php-src/ext/reflection/tests/reflectionObject_getConstants_error.phpt
2007-07-12 21:08:02 +00:00

23 lines
536 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
--UEXPECTF--
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 7
Warning: Wrong parameter count for ReflectionClass::getConstants() in %s on line 8