php-src/ext/reflection/tests/ReflectionExtension_getClassNames_basic.phpt

21 lines
420 B
Plaintext
Raw Normal View History

--TEST--
ReflectionExtension::getClassNames() method on an extension which acually returns some information
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--FILE--
<?php
$standard = new ReflectionExtension('standard');
var_dump($standard->getClassNames());
?>
==DONE==
--EXPECTF--
array(3) {
[0]=>
%s(22) "__PHP_Incomplete_Class"
[1]=>
%s(15) "php_user_filter"
[2]=>
%s(9) "Directory"
}
==DONE==