Annotation of embedaddon/php/ext/reflection/tests/ReflectionExtension_getClassNames_basic.phpt, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>