Adding stub methods for upcoming refactoring of menu generation.

This commit is contained in:
Mark Story 2010-01-05 22:52:25 -05:00
parent 1e5923c75a
commit 44cacf6dad

View file

@ -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() {
}
}
?>