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