Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/tests/discover.thtml
diff options
context:
space:
mode:
Diffstat (limited to 'site/app/views/tests/discover.thtml')
-rw-r--r--site/app/views/tests/discover.thtml11
1 files changed, 11 insertions, 0 deletions
diff --git a/site/app/views/tests/discover.thtml b/site/app/views/tests/discover.thtml
new file mode 100644
index 0000000..5dd5b67
--- /dev/null
+++ b/site/app/views/tests/discover.thtml
@@ -0,0 +1,11 @@
+<?php
+
+echo '<?xml version="1.0" ?><cases>';
+
+$testlist = TestManager::getTestCaseList();
+foreach ($testlist as $k=>$testcase) {
+ echo " <case>{$testcase}</case>\n";
+}
+
+echo '</cases>';
+?>