git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
19 lines
299 B
PHP
19 lines
299 B
PHP
<?php
|
|
// Sample test file
|
|
|
|
require "tests.php4";
|
|
require "class_ignore.php";
|
|
|
|
// No new functions
|
|
check::functions(array(do_blah));
|
|
// No new classes
|
|
check::classes(array(bar));
|
|
// now new vars
|
|
check::globals(array());
|
|
|
|
$bar=new bar();
|
|
do_blah($bar);
|
|
check::classparent($bar,"");
|
|
|
|
check::done();
|
|
?>
|