summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/skel.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/php/skel.php')
-rw-r--r--Examples/test-suite/php/skel.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/Examples/test-suite/php/skel.php b/Examples/test-suite/php/skel.php
new file mode 100644
index 0000000..780a999
--- /dev/null
+++ b/Examples/test-suite/php/skel.php
@@ -0,0 +1,15 @@
+<?php
+// Sample test file
+
+require "tests.php";
+require "____.php";
+
+// No new functions
+check::functions(array());
+// No new classes
+check::classes(array());
+// now new vars
+check::globals(array());
+
+check::done();
+?>