diff options
Diffstat (limited to 'Examples/test-suite/php/enum_scope_template_runme.php')
| -rw-r--r-- | Examples/test-suite/php/enum_scope_template_runme.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Examples/test-suite/php/enum_scope_template_runme.php b/Examples/test-suite/php/enum_scope_template_runme.php new file mode 100644 index 0000000..e152efc --- /dev/null +++ b/Examples/test-suite/php/enum_scope_template_runme.php @@ -0,0 +1,15 @@ +<?php +require "tests.php"; +require "enum_scope_template.php"; + +check::classes(array("enum_scope_template", "TreeInt")); +check::functions("chops"); +check::equal(0,TreeInt_Oak,"0==TreeInt_Oak"); +check::equal(1,TreeInt_Fir,"1==TreeInt_Fir"); +check::equal(2,TreeInt_Cedar,"2==TreeInt_Cedar"); +check::equal(TreeInt_Oak,chops(TreeInt_Oak),"TreeInt_Oak==chops(TreeInt_Oak)"); +check::equal(TreeInt_Fir,chops(TreeInt_Fir),"TreeInt_Fir==chops(TreeInt_Fir)"); +check::equal(TreeInt_Cedar,chops(TreeInt_Cedar),"TreeInt_Cedar==chops(TreeInt_Cedar)"); + +check::done(); +?> |
