summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_offsetUnset_negative-parameter.phpt
blob: 838100be1eed7d24a45ee0845b85aec3c09c36e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Check that SplDoublyLinkedList->offsetUnset() returns an error message when the offset is < 0.
--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(-1);
	}
	catch (Exception $e) {
		echo $e->getMessage() . "\n";
	}
?>
--EXPECT--
Offset out of range