Making ControllerTestCase abstract, that way PHP won't complain about empty test cases, closes #1868

This commit is contained in:
Jose Lorenzo Rodriguez 2011-07-30 22:05:17 -04:30
parent b15c77ecc3
commit eaa01634b1
2 changed files with 6 additions and 2 deletions

View file

@ -98,6 +98,10 @@ class ControllerTestCaseTestController extends AppController {
}
/**
* Used to get a testable concrete class of the test subject
*/
class TestingControllerTestCase extends ControllerTestCase {}
/**
* ControllerTestCaseTest
@ -128,7 +132,7 @@ class ControllerTestCaseTest extends CakeTestCase {
'View' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'View' . DS)
));
CakePlugin::loadAll();
$this->Case = new ControllerTestCase();
$this->Case = new TestingControllerTestCase();
Router::reload();
}

View file

@ -98,7 +98,7 @@ class InterceptContentHelper extends Helper {
*
* @package Cake.TestSuite
*/
class ControllerTestCase extends CakeTestCase {
abstract class ControllerTestCase extends CakeTestCase {
/**
* The controller to test in testAction