Removing methods that are no longer called by PHPUnit.

This commit is contained in:
mark_story 2010-06-12 19:01:18 -04:00
parent b2e61230ad
commit 2c037c0bab

View file

@ -107,21 +107,6 @@ class CakeTextReporter extends CakeBaseReporter {
flush();
}
/**
* Paints a PHP error.
*
* @param string $message Message to be shown.
* @return void
*/
public function paintError($message) {
parent::paintError($message);
echo "Exception " . $this->getExceptionCount() . "!\n$message\n";
$breadcrumb = $this->getTestList();
array_shift($breadcrumb);
echo "\tin " . implode("\n\tin ", array_reverse($breadcrumb));
echo "\n";
}
/**
* Paints a PHP exception.
*