Merge pull request #3193 from beporter/feature/phpunit-required-version

Adds phpunit required version to TestShell "not found" error message.
This commit is contained in:
ADmad 2014-04-01 21:54:28 +05:30
commit 7a4a806db1

View file

@ -171,7 +171,7 @@ class TestShell extends Shell {
$this->_dispatcher = new CakeTestSuiteDispatcher();
$success = $this->_dispatcher->loadTestFramework();
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>'));
}
}