aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/director_frob_runme.php
blob: 732b9d500af4568889e9c96b81e6ed9c2499412c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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();