php-src/ext/reflection/tests/reflectionObject_getConstants_error.phpt
2008-05-27 13:16:27 +00:00

19 lines
356 B
PHP

--TEST--
ReflectionObject::getConstants() - invalid params
--FILE--
<?php
class X {
}
$rc = new ReflectionObject(new X);
$rc->getConstants('X');
$rc->getConstants(true);
?>
--EXPECTF--
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 7
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 8