ReflectionClass_getMethods_002.phpt 513 B

123456789101112131415161718
  1. --TEST--
  2. ReflectionClass::getMethods() - invalid arguments
  3. --CREDITS--
  4. Robin Fernandes <robinf@php.net>
  5. Steve Seear <stevseea@php.net>
  6. --FILE--
  7. <?php
  8. $rc = new ReflectionClass("ReflectionClass");
  9. echo "\nTest invalid arguments:";
  10. $rc->getMethods('X');
  11. $rc->getMethods('X', true);
  12. ?>
  13. --EXPECTF--
  14. Test invalid arguments:
  15. Warning: ReflectionClass::getMethods() expects parameter 1 to be long, string given in %s on line 4
  16. Warning: ReflectionClass::getMethods() expects at most 1 parameter, 2 given in %s on line 5