Testfest: ReflectionExtension::info()-test by Stefan Koopmanschap

This commit is contained in:
Lars Strojny 2008-06-12 20:46:23 +00:00
parent da68b946a1
commit c26c072cba

View file

@ -0,0 +1,19 @@
--TEST--
ReflectionExtension::info()
--CREDITS--
Gerrit "Remi" te Sligte <remi@wolerized.com>
Leon Luijkx <leon@phpgg.nl>
--FILE--
<?php
$obj = new ReflectionExtension('reflection');
ob_start();
$testa = $obj->info();
$testb = ob_get_clean();
var_dump($testa);
var_dump(strlen($testb) > 24);
?>
==DONE==
--EXPECT--
NULL
bool(true)
==DONE==