php-src/ext/spl/tests/heap_top_variation_003.phpt

17 lines
267 B
Plaintext
Raw Normal View History

2009-05-17 15:24:08 +00:00
--TEST--
SPL: SplHeap top of empty heap
--CREDITS--
Mark Schaschke (mark@fractalturtle.com)
TestFest London May 2009
--FILE--
<?php
$h = new SplMinHeap();
try {
$h->top();
} catch (Exception $e) {
echo $e->getMessage();
}
?>
--EXPECTF--
Can't peek at an empty heap