splpriorityqueue_extract.phpt 386 B

1234567891011121314151617
  1. --TEST--
  2. SPL: splpriorityqueue extract() Test arguments
  3. --CREDITS--
  4. Roshan Abraham (roshanabrahams@gmail.com)
  5. TestFest London May 2009
  6. --FILE--
  7. <?php
  8. $sp = new SplPriorityQueue();
  9. $sp->insert("1",1);
  10. $sp->extract(1); // Should throw a warning as extract expects NO arguments
  11. ?>
  12. --EXPECTF--
  13. Warning: SplPriorityQueue::extract() expects exactly 0 parameters, 1 given in %s on line %d