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

14 lines
356 B
PHP

--TEST--
Check that SplDoublyLinkedList::push generate a warning and return NULL with missing param
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php
$dll = new SplDoublyLinkedList();
var_dump($dll->push());
?>
--EXPECTF--
Warning: SplDoublyLinkedList::push() expects exactly 1 parameter, 0 given in %s on line %d
NULL