blob: ae49d20024602d2a9e8bd7746ce5950ce49cece6 [file] [log] [blame]
<?php
// Sample test file
require "tests.php4";
require "conversion_namespace.php";
check::classes(array("Foo","Bar"));
$bar=new Bar;
check::classname("bar",$bar);
$foo=$bar->toFoo();
check::classname("foo",$foo);
check::done();
?>