summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_isEmpty_not-empty.phpt
blob: 4b308f345bdcac76c2be21c78bf4c03ba4592c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Check that SplDoublyLinkedList->isEmpty() correctly returns true for a non-empty list.
--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);
	//var_dump($dll);

	var_dump($dll->isEmpty());
?>
--EXPECT--
bool(false)