1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/spl/tests/SplDoublyLinkedList_isEmpty_empty.phpt
2020-02-03 22:52:20 +01:00

14 lines
304 B
PHP

--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)