mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
20 lines
400 B
PHP
20 lines
400 B
PHP
--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)
|