summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplObjectStorage_getInfo_empty_storage.phpt
blob: 8ea88ddbd31d6cba38ab9c5162759c24042d5b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Check that SplObjectStorage::getInfo returns NULL when storage is empty
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php

$s = new SplObjectStorage();

var_dump($s->getInfo());

?>
--EXPECT--
NULL