1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/ext/spl/tests/spl_heap_is_empty_basic.phpt
2019-03-11 11:32:20 +01:00

29 lines
440 B
PHP

--TEST--
SPL: SplHeap, test trivial method to find if a heap is empty
--CREDITS--
Nathaniel McHugh nat@fishtrap.co.uk
#testfest London 2009-05-09
--FILE--
<?php
class MyHeap extends SplHeap{
public function compare($a, $b){
return $a < $b;
}
}
$heap = new MyHeap();
var_dump($heap->isEmpty());
$heap->insert(1);
var_dump($heap->isEmpty());
$heap->extract();
var_dump($heap->isEmpty());
?>
--EXPECTF--
bool(true)
bool(false)
bool(true)