mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Adding stub methods for upcoming refactoring of menu generation.
This commit is contained in:
parent
1e5923c75a
commit
44cacf6dad
1 changed files with 21 additions and 0 deletions
|
@ -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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
Loading…
Reference in a new issue