diff options
Diffstat (limited to 'Examples/test-suite/php/template_construct_runme.php')
| -rw-r--r-- | Examples/test-suite/php/template_construct_runme.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Examples/test-suite/php/template_construct_runme.php b/Examples/test-suite/php/template_construct_runme.php new file mode 100644 index 0000000..3a3986f --- /dev/null +++ b/Examples/test-suite/php/template_construct_runme.php @@ -0,0 +1,11 @@ +<?php + +require "tests.php"; +require "template_construct.php"; + +check::classes(array(Foo_int)); +$foo_int=new foo_int(3); +check::is_a($foo_int,"foo_int","Made a foo_int"); + +check::done(); +?> |
