php-src/ext/spl/tests/spl_pq_top_error_empty.phpt
2009-05-17 15:24:08 +00:00

20 lines
357 B
PHP

--TEST--
SPL: SplPriorityQueue: top exception on empty heap
--CREDITS--
Nathaniel McHugh nat@fishtrap.co.uk
#testfest 2009-05-09
--FILE--
<?php
$priorityQueue = new SplPriorityQueue();
try {
$priorityQueue->top();
} catch (RuntimeException $e) {
echo "Exception: ".$e->getMessage().PHP_EOL;
}
?>
--EXPECT--
Exception: Can't peek at an empty heap