--TEST-- ReflectionMethod constructor errors --CREDITS-- Robin Fernandes Steve Seear --FILE-- getMessage().PHP_EOL; } try { echo "\nToo many arguments:\n"; $methodInfo = new ReflectionMethod("TestClass", "foo", true); } catch (TypeError $re) { echo "Ok - ".$re->getMessage().PHP_EOL; } try { //invalid class $methodInfo = new ReflectionMethod("InvalidClassName", "foo"); } catch (ReflectionException $re) { echo "Ok - ".$re->getMessage().PHP_EOL; } try { //invalid 1st param $methodInfo = new ReflectionMethod([], "foo"); } catch (ReflectionException $re) { echo "Ok - ".$re->getMessage().PHP_EOL; } try{ //invalid 2nd param $methodInfo = new ReflectionMethod("TestClass", []); } catch (TypeError $re) { echo "Ok - ".$re->getMessage().PHP_EOL; } ?> --EXPECTF-- Too few arguments: Ok - ReflectionMethod::__construct() expects exactly 1 parameter, 0 given Too many arguments: Ok - ReflectionMethod::__construct() expects exactly 1 parameter, 3 given Ok - Class InvalidClassName does not exist Ok - The parameter class is expected to be either a string or an object Ok - ReflectionMethod::__construct() expects exactly 1 parameter, 2 given