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

23 lines
390 B
Plaintext
Raw Normal View History

2009-05-17 15:21:45 +00:00
--TEST--
SPL: SplMaxHeap, Test method to comare elements
--CREDITS--
Chris Scott chris.scott@nstein.com
#testfest London 2009-05-09
--FILE--
<?php
class MyHeap extends SplMaxHeap
{
public function testCompare()
{
return parent::compare(1);
}
}
$heap = new MyHeap();
$heap->testCompare();
?>
--EXPECTF--
Warning: SplMaxHeap::compare() expects exactly 2 parameters, %s