It's now only generated if something to put in it is specified via: %pragma(php) include=... or %pragma(php) code=...
17 lines
424 B
PHP
17 lines
424 B
PHP
<?php
|
|
|
|
require "tests.php";
|
|
|
|
// No new functions
|
|
check::functions(array());
|
|
// New classes
|
|
check::classes(array('Alpha','Bravo','Charlie','Delta','Ops','Prims','corePoint3d','coreCallbacks_On3dEngineRedrawnData','coreCallbacksOn3dEngineRedrawnData','coreCallbacks'));
|
|
// No new vars
|
|
check::globals(array());
|
|
|
|
$foo = new Bravo();
|
|
$s = $foo->abs_method();
|
|
|
|
check::equal($s, "Bravo::abs_method()", "s failed");
|
|
|
|
check::done();
|