git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10967 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
187 B
PHP
12 lines
187 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
require "abstract_inherit_ok.php";
|
|
|
|
check::classes(array(Foo,Spam));
|
|
$spam=new Spam();
|
|
|
|
check::equal(0,$spam->blah(),"spam object method");
|
|
|
|
check::done();
|
|
?>
|