SplFixedArray_offsetUnset_invalid_parameter.phpt 331 B

123456789101112131415
  1. --TEST--
  2. SPL FixedArray offsetUnset throws error on no parameter
  3. --CREDITS--
  4. PHPNW TestFest 2009 - Ben Longden
  5. --FILE--
  6. <?php
  7. $array = new SplFixedArray(5);
  8. $a = $array->offsetUnset();
  9. if(is_null($a)) {
  10. echo 'PASS';
  11. }
  12. ?>
  13. --EXPECTF--
  14. Warning: SplFixedArray::offsetUnset() expects exactly 1 parameter, 0 given in %s on line %d
  15. PASS