summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_unshift_missing_parameter.phpt
blob: 18afa034bb163b4eb081829ea17b7e2cbeb6f238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Check that SplDoublyLinkedList::unshift 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->unshift());
?>
--EXPECTF--
Warning: SplDoublyLinkedList::unshift() expects exactly 1 parameter, 0 given in %s on line %d
NULL