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

15 lines
312 B
PHP

--TEST--
SplDoublyLinkedList::top() - pass in an unexpected array
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$list = new SplDoublyLinkedList();
$list->push("top");
$list->top(array());
?>
--EXPECTF--
Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d