blob: 92de96920775b3d88d87441a42f0f0f08ae9eac1 [file] [log] [blame]
<?php
// Sample test file
require "tests.php";
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();
?>