php-src/ext/spl/tests/SplObjectStorage_getInfo_empty_storage.phpt

16 lines
244 B
Plaintext
Raw Normal View History

2009-05-23 15:37:36 +00:00
--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