-=[ Mr. Bumblebee ]=-
_Indonesia_
| Path : /usr/src/php/ext/reflection/tests/ |
|
|
| Current File : //usr/src/php/ext/reflection/tests/ReflectionParameter_invalidMethodInConstructor.phpt |
--TEST--
ReflectionParameter::__construct(): Invalid method as constructor
--FILE--
<?php
// Invalid class name
try {
new ReflectionParameter (array ('A', 'b'), 0);
} catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
// Invalid class method
try {
new ReflectionParameter (array ('C', 'b'), 0);
} catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
// Invalid object method
try {
new ReflectionParameter (array (new C, 'b'), 0);
} catch (ReflectionException $e) { echo $e->getMessage ()."\n"; }
echo "Done.\n";
class C {
}
?>
--EXPECTF--
Class A does not exist
Method C::b() does not exist
Method C::b() does not exist
Done.
Copyright © 2017 || Recoded By Mr.Bumblebee