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

15 lines
351 B
PHP

--TEST--
SPL: SplHeap top, illegal number of args
--CREDITS--
Mark Schaschke (mark@fractalturtle.com)
TestFest London May 2009
--FILE--
<?php
$h = new SplMinHeap();
$h->insert(5);
// top doesn't take any args, lets see what happens if we give it one
$h->top('bogus');
?>
--EXPECTF--
Warning: SplHeap::top() expects exactly 0 parameters, 1 given in %s