aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php5/template_arg_typename_runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php5/template_arg_typename_runme.php')
-rw-r--r--Examples/test-suite/php5/template_arg_typename_runme.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/Examples/test-suite/php5/template_arg_typename_runme.php b/Examples/test-suite/php5/template_arg_typename_runme.php
deleted file mode 100644
index 7d60285e3..000000000
--- a/Examples/test-suite/php5/template_arg_typename_runme.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-require "tests.php";
-require "template_arg_typename.php";
-
-// No new functions
-check::functions(array());
-// No new classes
-check::classes(array(UnaryFunction_bool_bool,BoolUnaryFunction_bool));
-$ufbb=new unaryfunction_bool_bool();
-check::is_a($ufbb,"unaryfunction_bool_bool");
-
-unset($whatisthis);
-$bufb=new boolunaryfunction_bool($whatisthis);
-check::is_a($bufb,"boolunaryfunction_bool");
-
-check::done();
-?>