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

15 lines
255 B
PHP

--TEST--
Check that SplObjectStorage::setInfo returns NULL when storage is empty
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php
$s = new SplObjectStorage();
var_dump($s->setInfo('some_value'));
?>
--EXPECT--
NULL