Files

15 lines
245 B
PHP
Raw Permalink Normal View History

<?php
require "tests.php";
check::functions(array('do_blah'));
check::classes(array('class_ignore','Bar','Boo','Far','Hoo'));
// No new vars
check::globals(array());
$bar=new bar();
do_blah($bar);
check::classparent($bar,"");
check::done();