php-src/ext/reflection/tests/ReflectionExtension_getClassNames_variation1.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

17 lines
361 B
PHP

--TEST--
ReflectionExtension::getClassNames() method on an extension with no classes
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--SKIPIF--
<?php
extension_loaded('ctype') or die("skip Requires 'ctype' extension");
?>
--FILE--
<?php
$extension = new ReflectionExtension('ctype');
var_dump($extension->getClassNames());
?>
--EXPECT--
array(0) {
}