aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/virtual_vs_nonvirtual_base_runme.php
blob: 8d8d4056005a8cf4ac0277ee8fa4f644fc2b99b6 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

require "tests.php";

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

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

check::done();