Skip to content

Instantly share code, notes, and snippets.

@till
Created July 22, 2011 14:45
Show Gist options
  • Save till/1099599 to your computer and use it in GitHub Desktop.
Save till/1099599 to your computer and use it in GitHub Desktop.
<?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