summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplObjectStorage_current_empty_storage.phpt
blob: 4807f28c0b3981080f7b99e2443d0b5426a9e7b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Check that SplObjectStorage::current returns NULL when storage is empty
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php

$s = new SplObjectStorage();

var_dump($s->current());

?>
--EXPECT--
NULL