+
+ Test Groups || Test Cases
+EOD;
+echo $suiteHeader;
+ }
+
+ function CakePHPTestSuiteFooter()
+ {
+ $footer = <<
+
+EOD;
+echo $footer;
+ }
+
+CakePHPTestHeader();
+CakePHPTestSuiteHeader();
+
+ if (isset($_GET['show']) && $_GET['show'] == 'cases')
+ {
+ CakePHPTestCaseList();
+ }
+ elseif (isset($_GET['show']) && $_GET['show'] == 'groups')
+ {
+ CakePHPTestGroupTestList();
+ }
+CakePHPTestSuiteFooter();
+?>
\ No newline at end of file
diff --git a/tests/menu.php b/tests/test_paths.php
similarity index 80%
rename from tests/menu.php
rename to tests/test_paths.php
index c255f2fc7..80373c791 100644
--- a/tests/menu.php
+++ b/tests/test_paths.php
@@ -20,8 +20,9 @@
* @filesource
* @author CakePHP Test Suite Authors/Developers
* @copyright Copyright (c) 2005, CakePHP Test Suite Authors/Developers
- * @link https://trac.cakephp.org/wiki/TestSuite/Authors/ Authors/Developers
+ * @link https://trac.cakephp.org/wiki/Cake/Manual/TestSuite/Authors Authors/Developers
* @package test_suite
+ * @subpackage test_suite.tests_1_x
* @since CakePHP Test Suite v 1.0.0.0
* @version $Revision$
* @modifiedby $LastChangedBy$
@@ -29,8 +30,10 @@
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/
-error_reporting(E_ALL);
-set_time_limit(600);
-ini_set('memory_limit','128M');
+/**
+ * Path to the simpletest directory.
+ */
+define ('SIMPLE_TEST',VENDORS.'simpletest'.DS);
+
?>
\ No newline at end of file