summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionExtension_getClassNames_basic.phpt
blob: 3fea08c43f115c902f4164f75b17bb096f197256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
ReflectionExtension::getClassNames() method on an extension which actually returns some information
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--FILE--
<?php
$standard = new ReflectionExtension('standard');
var_dump($standard->getClassNames());
?>
==DONE==
--EXPECTF--
array(4) {
  [0]=>
  %s(22) "__PHP_Incomplete_Class"
  [1]=>
  %s(15) "php_user_filter"
  [2]=>
  %s(9) "Directory"
  [3]=>
  %s(14) "AssertionError"
}
==DONE==