ApplicationTest\Controller\IndexControllerTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        // The module configuration should still be applicable for tests.
        // You can override configuration here with test case specific values,
        // such as sample view templates, path stacks, module_listener_options,
        // etc.
        $configOverrides = ['module_listener_options' => ['config_cache_enabled' => false]];
        $this->setApplicationConfig(ArrayUtils::merge(include __DIR__ . '/../../../../config/application.config.php', $configOverrides));
        parent::setUp();
    }