php-src/ext/spl/tests/SplDoublyLinkedList_offsetExists_invalid_parameter.phpt
2009-05-23 15:38:18 +00:00

16 lines
374 B
PHP

--TEST--
SPL SplDoublyLinkedList offsetExists displays warning and returns null on no parameters
--CREDITS--
PHPNW TestFest 2009 - Ben Longden
--FILE--
<?php
$list = new SplDoublyLinkedList();
$a = $list->offsetExists();
if(is_null($a)) {
echo 'PASS';
}
?>
--EXPECTF--
Warning: SplDoublyLinkedList::offsetExists() expects exactly 1 parameter, 0 given in %s on line %d
PASS