summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_isEmpty_empty.phpt
blob: 8c8012202e46c40a0618853d4f6344c9de1b3e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Check that SplDoublyLinkedList->isEmpty() correctly returns true for an empty list.
--CREDITS--
PHPNW Testfest 2009 - Paul Court ( g@rgoyle.com )
--FILE--
<?php
    // Create a new Doubly Linked List
    $dll = new SplDoublyLinkedList();

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