aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/sym_runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php/sym_runme.php')
-rw-r--r--Examples/test-suite/php/sym_runme.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/Examples/test-suite/php/sym_runme.php b/Examples/test-suite/php/sym_runme.php
index 127d28fd9..7e8f914c1 100644
--- a/Examples/test-suite/php/sym_runme.php
+++ b/Examples/test-suite/php/sym_runme.php
@@ -1,13 +1,12 @@
<?php
require "tests.php";
-require "sym.php";
// No new functions
check::functions(array());
-// No new classes
-check::classes(array('flim','flam'));
-// now new vars
+// New classes
+check::classes(array('Flim','Flam'));
+// No new vars
check::globals(array());
$flim=new flim();
@@ -19,4 +18,3 @@ check::equal($flam->jam(),"flam-jam","flam()->jam==flam-jam");
check::equal($flam->jar(),"flam-jar","flam()->jar==flam-jar");
check::done();
-?>