ReflectionParameter_invalidMethodInConstructor.phpt 660 B

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. ReflectionParameter::__construct(): Invalid method as constructor
  3. --FILE--
  4. <?php
  5. // Invalid class name
  6. try {
  7. new ReflectionParameter (array ('A', 'b'), 0);
  8. } catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
  9. // Invalid class method
  10. try {
  11. new ReflectionParameter (array ('C', 'b'), 0);
  12. } catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
  13. // Invalid object method
  14. try {
  15. new ReflectionParameter (array (new C, 'b'), 0);
  16. } catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
  17. echo "Done.\n";
  18. class C {
  19. }
  20. ?>
  21. --EXPECTF--
  22. Class A does not exist
  23. Method C::b() does not exist
  24. Method C::b() does not exist
  25. Done.