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

19 lines
356 B
Plaintext
Raw Normal View History

2007-07-12 21:08:02 +00:00
--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