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

20 lines
357 B
PHP

--TEST--
Ensure the ReflectionProperty constructor triggers autoload.
--FILE--
<?php
spl_autoload_register(function ($name) {
echo "In autoload: ";
var_dump($name);
});
try {
new ReflectionProperty('UndefC', 'p');
}
catch (ReflectionException $e) {
echo $e->getMessage();
}
?>
--EXPECT--
In autoload: string(6) "UndefC"
Class UndefC does not exist