From e5dd8acb602fb8e0e16d9a812b21b877da8bdb0a Mon Sep 17 00:00:00 2001 From: Brian Porter Date: Tue, 1 Apr 2014 09:08:03 -0500 Subject: [PATCH] Adds phpunit required version to TestShell "not found" error message. --- lib/Cake/Console/Command/TestShell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Console/Command/TestShell.php b/lib/Cake/Console/Command/TestShell.php index dd955d8a2..7e1e2b55f 100644 --- a/lib/Cake/Console/Command/TestShell.php +++ b/lib/Cake/Console/Command/TestShell.php @@ -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 (http://www.phpunit.de)')); + throw new Exception(__d('cake_dev', 'Please install PHPUnit framework v3.7 (http://www.phpunit.de)')); } }