Colorful error if not PHPUnit is found

This commit is contained in:
Jose Lorenzo Rodriguez 2011-04-21 13:28:49 -04:30
parent 8fa73e9650
commit 1014806c7b

View file

@ -165,7 +165,7 @@ class TestsuiteShell extends Shell {
$this->_dispatcher = new CakeTestSuiteDispatcher();
$sucess = $this->_dispatcher->loadTestFramework();
if (!$sucess) {
throw new Exception(__d('cake_dev', 'Please install PHPUnit framework (http://www.phpunit.de)'));
throw new Exception(__d('cake_dev', 'Please install PHPUnit framework <info>(http://www.phpunit.de)</info>'));
}
}