swig/Examples/test-suite/php/arrays_scope_runme.php
2008-12-06 21:40:54 +00:00

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();
?>