diff --git a/lib/Cake/TestSuite/ControllerTestCase.php b/lib/Cake/TestSuite/ControllerTestCase.php index f891f35da..b13ce7df3 100644 --- a/lib/Cake/TestSuite/ControllerTestCase.php +++ b/lib/Cake/TestSuite/ControllerTestCase.php @@ -265,7 +265,7 @@ abstract class ControllerTestCase extends CakeTestCase { ->will($this->returnValue($options['data'])); } - $Dispatch = new ControllerTestDispatcher(); + $Dispatch = $this->_createDispatcher(); foreach (Router::$routes as $route) { if ($route instanceof RedirectRoute) { $route->response = $this->getMock('CakeResponse', array('send')); @@ -315,6 +315,15 @@ abstract class ControllerTestCase extends CakeTestCase { return $this->{$options['return']}; } +/** + * Creates the test dispatcher class + * + * @return Dispatcher + */ + protected function _createDispatcher() { + return new ControllerTestDispatcher(); + } + /** * Generates a mocked controller and mocks any classes passed to `$mocks`. By * default, `_stop()` is stubbed as is sending the response headers, so to not