aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/php4/add_link_runme.php4
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php4/add_link_runme.php4')
-rw-r--r--Examples/test-suite/php4/add_link_runme.php423
1 files changed, 23 insertions, 0 deletions
diff --git a/Examples/test-suite/php4/add_link_runme.php4 b/Examples/test-suite/php4/add_link_runme.php4
new file mode 100644
index 000000000..aca3267b6
--- /dev/null
+++ b/Examples/test-suite/php4/add_link_runme.php4
@@ -0,0 +1,23 @@
+<?php
+// Sample test file
+
+require "tests.php4";
+require "add_link.php";
+
+// No new functions
+check::functions(array());
+// No new classes
+check::classes(array(foo));
+
+$foo=new foo();
+check::is_a($foo,foo);
+
+$foo_blah=$foo->blah();
+check::is_a($foo_blah,foo);
+
+//fails, can't be called as a class method, should allow and make it nil?
+//$class_foo_blah=foo::blah();
+//check::is_a($class_foo_blah,foo);
+
+check::done();
+?>