git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10967 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
276 B
PHP
17 lines
276 B
PHP
<?php
|
|
// Sample test file
|
|
|
|
require "tests.php";
|
|
require "arrays_scope.php";
|
|
|
|
// No new functions
|
|
check::functions(array(new_bar,bar_blah));
|
|
// No new classes
|
|
check::classes(array(arrays_scope,Bar));
|
|
// now new vars
|
|
check::globals(array());
|
|
|
|
$bar=new bar();
|
|
|
|
check::done();
|
|
?>
|