Revert part of the changes in 1ede742d92

These variables are used by the HTML test reporter.
This commit is contained in:
mark_story 2015-09-29 21:41:33 -04:00
parent 0502e0731a
commit 17c3358d77

View file

@ -58,7 +58,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
*/
public function paintDocumentStart() {
ob_start();
$this->params['baseDir'];
$baseDir = $this->params['baseDir'];
include CAKE . 'TestSuite' . DS . 'templates' . DS . 'header.php';
}
@ -69,7 +69,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
* @return void
*/
public function paintTestMenu() {
$this->baseUrl() . '?show=cases';
$cases = $this->baseUrl() . '?show=cases';
$plugins = App::objects('plugin', null, false);
sort($plugins);
include CAKE . 'TestSuite' . DS . 'templates' . DS . 'menu.php';