summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplObjectStorage_getInfo_empty_storage.phpt
blob: e6c4de88c1974d8d2e3a196473633c791261890a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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