php-src/tests/classes/autoload_016.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

21 lines
382 B
PHP

--TEST--
Ensure ReflectionClass::getProperty() triggers autoload
--FILE--
<?php
spl_autoload_register(function ($name) {
echo "In autoload: ";
var_dump($name);
});
$rc = new ReflectionClass("stdClass");
try {
$rc->getProperty("UndefC::p");
} catch (ReflectionException $e) {
echo $e->getMessage();
}
?>
--EXPECT--
In autoload: string(6) "undefc"
Class undefc does not exist