swig/Examples/test-suite/php/arrays_scope_runme.php4

18 lines
277 B
PHP

<?php
// Sample test file
require "tests.php4";
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();
?>