summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplPriorityQueue_extract_invalid_parameter.phpt
blob: 79b75ae4a0745d8be702d971836b57dcceb47bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
--TEST--
Check that SplPriorityQueue::extract generate a warning and returns NULL when param passed
--CREDITS--
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
--FILE--
<?php

$data_provider = array(
    new stdClass,
	array(),
	true,
	"string",
	12345,
	1.2345,
	NULL
);

foreach($data_provider as $input) {

	$h = new SplPriorityQueue();

	var_dump($h->extract($input));
}

?>
--EXPECTF--
Warning: SplPriorityQueue::extract() expects exactly 0 parameters, 1 given in %s on line %d
NULL

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

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

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

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

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

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