Adds phpunit required version to TestShell "not found" error message.

This commit is contained in:
Brian Porter 2014-04-01 09:08:03 -05:00
parent 997154565f
commit e5dd8acb60

View file

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