mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
17 lines
370 B
Plaintext
17 lines
370 B
Plaintext
|
--TEST--
|
||
|
Check that SplPriorityQueue::insert generate a warning and returns NULL when rubbish params are passed
|
||
|
--CREDITS--
|
||
|
PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$h = new SplPriorityQueue();
|
||
|
|
||
|
var_dump($h->insert(NULL));
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Warning: SplPriorityQueue::insert() expects exactly 2 parameters, 1 given in %s on line %d
|
||
|
NULL
|
||
|
|