
| Path : /usr/src/php/ext/spl/tests/ |
| Current File : //usr/src/php/ext/spl/tests/SplObjectStorage_setInfo_empty_storage.phpt |
--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