You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
368 B

  1. --TEST--
  2. Check that SplObjectStorage::offsetGet throws exception when non-existing object is requested
  3. --CREDITS--
  4. PHPNW Testfest 2009 - Simon Westcott (swestcott@gmail.com)
  5. --FILE--
  6. <?php
  7. $s = new SplObjectStorage();
  8. $o1 = new stdClass();
  9. try {
  10. $s->offsetGet($o1);
  11. } catch (UnexpectedValueException $e) {
  12. echo $e->getMessage();
  13. }
  14. ?>
  15. --EXPECT--
  16. Object not found