[php] Add runmes for more director testcases
This commit is contained in:
parent
7b929dce82
commit
5656da3f31
3 changed files with 92 additions and 0 deletions
16
Examples/test-suite/php/cpp11_final_directors_runme.php
Normal file
16
Examples/test-suite/php/cpp11_final_directors_runme.php
Normal 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");
|
||||
Loading…
Add table
Add a link
Reference in a new issue