diff options
Diffstat (limited to 'ext/spl/tests/SplDoublyLinkedList_offsetUnset_negative-parameter.phpt')
| -rw-r--r-- | ext/spl/tests/SplDoublyLinkedList_offsetUnset_negative-parameter.phpt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ext/spl/tests/SplDoublyLinkedList_offsetUnset_negative-parameter.phpt b/ext/spl/tests/SplDoublyLinkedList_offsetUnset_negative-parameter.phpt new file mode 100644 index 0000000..d3d1d7d --- /dev/null +++ b/ext/spl/tests/SplDoublyLinkedList_offsetUnset_negative-parameter.phpt @@ -0,0 +1,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 |
