aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php5/enum_scope_template_runme.php
blob: 85ba467b7d250b8f599e8a064c579e59277a9d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
require "tests.php";
require "enum_scope_template.php";

check::classes(array("enum_scope_template", "TreeInt"));
check::functions(array("chops","treeint_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();
?>