php-src/ext/spl/tests/SplDoublyLinkedList_top_pass_integer.phpt

15 lines
319 B
Plaintext
Raw Normal View History

2009-05-23 15:37:36 +00:00
--TEST--
SplDoublyLinkedList::top() - pass in an unexpected integer parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$list = new SplDoublyLinkedList();
$list->push("top");
$list->top(45);
?>
--EXPECTF--
Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d