php-src/ext/reflection/tests/ReflectionObject_getConstants_basic.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

50 lines
837 B
PHP

--TEST--
ReflectionObject::getConstants() - basic function test
--FILE--
<?php
class C {
const a = 'hello from C';
}
class D extends C {
}
class E extends D {
}
class F extends E {
const a = 'hello from F';
}
class X {
}
$classes = array("C", "D", "E", "F", "X");
foreach($classes as $class) {
echo "Reflecting on instance of class $class: \n";
$rc = new ReflectionObject(new $class);
var_dump($rc->getConstants());
}
?>
--EXPECT--
Reflecting on instance of class C:
array(1) {
["a"]=>
string(12) "hello from C"
}
Reflecting on instance of class D:
array(1) {
["a"]=>
string(12) "hello from C"
}
Reflecting on instance of class E:
array(1) {
["a"]=>
string(12) "hello from C"
}
Reflecting on instance of class F:
array(1) {
["a"]=>
string(12) "hello from F"
}
Reflecting on instance of class X:
array(0) {
}