php-8.0.30-src/ext/spl/tests/SplObjectStorage_getInfo_em...

15 lines
243 B
PHP

--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