summaryrefslogtreecommitdiff
path: root/ext/spl/tests/splpriorityqueue_extract.phpt
blob: eee7bb2f7373832581324ac6e8f5f2d4dd8be695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
SPL: splpriorityqueue extract() Test arguments
--CREDITS--
Roshan Abraham (roshanabrahams@gmail.com)
TestFest London May 2009
--FILE--
<?php

$sp = new SplPriorityQueue();

$sp->insert("1",1);

$sp->extract(1); // Should throw a warning as extract expects NO arguments

?>
--EXPECTF--

Warning: SplPriorityQueue::extract() expects exactly 0 parameters, 1 given in %s on line %d