From 44cacf6dad76d7f045efb5d54ad6b273a1b039d9 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Tue, 5 Jan 2010 22:52:25 -0500 Subject: [PATCH] Adding stub methods for upcoming refactoring of menu generation. --- .../tests/lib/reporter/cake_base_reporter.php | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/cake/tests/lib/reporter/cake_base_reporter.php b/cake/tests/lib/reporter/cake_base_reporter.php index f7275b15d..208e9ca10 100644 --- a/cake/tests/lib/reporter/cake_base_reporter.php +++ b/cake/tests/lib/reporter/cake_base_reporter.php @@ -90,4 +90,25 @@ class CakeBaseReporter extends SimpleReporter { return ((float)$sec + (float)$usec); } +/** + * Retrieves a list of test cases from the active Manager class, + * displaying it in the correct format for the reporter subclass + * + * @return mixed + */ + function testCaseList() { + + } + +/** + * Retrieves a list of group test cases from the active Manager class + * displaying it in the correct format for the reporter subclass. + * + * @return void + */ + function groupTestList() { + + } + } +?> \ No newline at end of file