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

15 lines
331 B
Plaintext
Raw Normal View History

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