blob: 3705b3fd0be6c3665702124e4588995d2f9c4608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--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
|