mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
20 lines
354 B
PHP
20 lines
354 B
PHP
--TEST--
|
|
Ensure the ReflectionMethod constructor triggers autoload.
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
echo "In autoload: ";
|
|
var_dump($name);
|
|
});
|
|
|
|
try {
|
|
new ReflectionMethod("UndefC::test");
|
|
}
|
|
catch (ReflectionException $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
In autoload: string(6) "UndefC"
|
|
Class UndefC does not exist
|