1--TEST--
2Check that SplObjectStorage::current returns NULL when storage is empty
3--CREDITS--
4PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
5--FILE--
6<?php
7
8$s = new SplObjectStorage();
9
10var_dump($s->current());
11
12?>
13--EXPECT--
14NULL
15
16