blob: 75c7ccf27341c7f9f062ba8f6798bbf3dd6710fa [file] [log] [blame]
<?php
// Sample test file
require "tests.php4";
require "arrays_scope.php";
// No new functions
check::functions(array(new_bar,bar_blah));
// No new classes
check::classes(array(arrays_scope,Bar));
// now new vars
check::globals(array());
$bar=new bar();
check::done();
?>