php-src/ext/reflection/tests/reflectionClass_getConstants_error.phpt

25 lines
583 B
Plaintext
Raw Normal View History

2007-07-10 16:21:26 +00:00
--TEST--
ReflectionClass::getConstants()
--FILE--
<?php
class X {
}
$rc = new reflectionClass('X');
//Test invalid arguments
$rc->getConstants('X');
$rc->getConstants(true);
$rc->getConstants(null);
$rc->getConstants('A', 'B');
?>
--EXPECTF--
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 8
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 9
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 10
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 11