mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
19 lines
388 B
PHP
19 lines
388 B
PHP
--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
|
|
|