php-src/ext/reflection/tests/reflectionClass_getConstants_error.phpt
2007-07-10 16:25:15 +00:00

25 lines
583 B
PHP

--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