blob: d1c0ab1ea56e6f52a5a912e708437642df01fd28 [file] [log] [blame]
<?php
require "tests.php";
// No new functions
check::functions(array());
// New classes
check::classes(array('ProjectBar','ProjectFoo'));
// No new vars
check::globals(array());
$f = new ProjectFoo();
// This resulted in "Fatal error: Class 'Foo' not found"
$f->get_self();
check::done();