summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/conversion_namespace_runme.php4
blob: ae49d20024602d2a9e8bd7746ce5950ce49cece6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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();
?>