Skip to content

Commit

Permalink
Adding parent calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 16, 2010
1 parent a054695 commit 5ff376e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cake/tests/cases/libs/controller_test_case.test.php
Expand Up @@ -111,6 +111,7 @@ class ControllerTestCaseTest extends CakeTestCase {
* @return void
*/
function setUp() {
parent::setUp();
App::build(array(
'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS),
'controllers' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'controllers' . DS),
Expand All @@ -127,8 +128,8 @@ function setUp() {
* @return void
*/
function tearDown() {
parent::tearDown();
$this->Case->controller = null;
App::build();
}

/**
Expand Down

0 comments on commit 5ff376e

Please sign in to comment.