summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php5/virtual_vs_nonvirtual_base_runme.php
blob: 0d4aa3d5fc6c10dfff631cc4546105ffc2088596 (plain)
1
2
3
4
5
6
7
8
9
10
11
<? 

require "tests.php";
require "virtual_vs_nonvirtual_base.php";

$fail = new SimpleClassFail();
$work = new SimpleClassWork();

check::equal($work->getInner()->get(), $fail->getInner()->get(), "should both be 10");

?>