[php] Add runmes for more director testcases

This commit is contained in:
Olly Betts 2022-01-22 21:12:13 +13:00
commit 5656da3f31
3 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?php
require "tests.php";
// No new functions
check::functions(array());
check::classes(array('Base','BaseFinalDestructor','BaseFinalDestructor2','Derived'));
// No new vars
check::globals(array());
class Derived2 extends Derived {
function meth() { return 3; }
}
$b = new Derived2();
check::equal($b->meth(), 3, "Wrong return value");