1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/spl/tests/SplHeap_isEmpty.phpt
2009-05-23 15:38:18 +00:00

16 lines
223 B
PHP

--TEST--
Check that SplHeap::isEmpty standard success test
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php
$h = new SplMaxHeap();
var_dump($h->isEmpty());
?>
--EXPECTF--
bool(true)