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

16 lines
355 B
PHP

--TEST--
Tests that the offsetGet() method throws an error when no argument is sent
--CREDITS--
PHPNW Test Fest 2009 - Rick Ogden
--FILE--
<?php
$dll = new SplDoublyLinkedList();
$dll->push(1);
$dll->push(2);
var_dump($dll->offsetGet());
?>
--EXPECTF--
Warning: SplDoublyLinkedList::offsetGet() expects exactly 1 parameter, 0 given in %s on line %d
NULL