summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_unshift_missing_parameter.phpt
blob: adc631407c2915b13b9c59d130bc96abdba07ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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