ApplicationTest\Controller\ZZIndexControllerDevModeTest::setUp PHP 메소드

setUp() 공개 메소드

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 = ['modules' => ['ZF\\Apigility\\Admin', 'ZF\\Apigility\\Admin\\Ui'], 'module_listener_options' => ['config_cache_enabled' => false, 'config_glob_paths' => [__DIR__ . '/../../../../config/autoload/{,*.}{global,local}.php', __DIR__ . '/../../../../config/autoload/{,*.}{global,local}-development.php']]];
        $this->setApplicationConfig(ArrayUtils::merge(include __DIR__ . '/../../../../config/application.config.php', $configOverrides));
        parent::setUp();
    }
ZZIndexControllerDevModeTest