php-8.0.30-src/ext/spl/tests/SplDoublyLinkedList_offsetU...

24 lines
562 B
PHP

--TEST--
Check that SplDoublyLinkedList->offsetUnset() returns an error message when the offset is > elements.
--CREDITS--
PHPNW Testfest 2009 - Paul Court ( g@rgoyle.com )
--FILE--
<?php
// Create a new Doubly Linked List
$dll = new SplDoublyLinkedList();
// Add some items to the list
$dll->push(1);
$dll->push(2);
$dll->push(3);
try {
$dll->offsetUnset(3);
}
catch (Exception $e) {
echo $e->getMessage() . "\n";
}
?>
--EXPECT--
SplDoublyLinkedList::offsetUnset(): Argument #1 ($index) is out of range