Created
July 22, 2011 14:45
-
-
Save till/1099599 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// broken | |
class IndexControllerTest extends Zend_Test_PHPUnit_ControllerTestCase | |
{ | |
public function setUp() | |
{ | |
parent::setUp(); | |
$this->bootstrap = new Zend_Application( | |
APPLICATION_ENV, | |
APPLICATION_PATH . '/configs/application.ini' | |
); | |
} | |
} | |
// works | |
class IndexControllerTest extends Zend_Test_PHPUnit_ControllerTestCase | |
{ | |
public function setUp() | |
{ | |
$this->bootstrap = new Zend_Application( | |
APPLICATION_ENV, | |
APPLICATION_PATH . '/configs/application.ini' | |
); | |
parent::setUp(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment