aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/conversion_runme.php
blob: 1a10ff4f4941a5bb7eb7bd692bcf2bf53f0ff647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

require "tests.php";
require "conversion.php";

check::classes(array("Foo","Bar"));
$bar=new Bar;
check::classname("bar",$bar);
$foo=$bar->toFoo();
check::classname("foo",$foo);

check::done();
?>