Customizing application config ============================== You may need to specify different configuration files per test cases, to do this you can make it like the following: ```php 'yii\console\Application', 'components' => [ //override console components if needed ], ] ); ``` and then just use your `ConsoleTestCase` like the following: ```php use \yii\codeception\TestCase; class ConsoleTestCase extends TestCase { public $appConfig = '@tests/unit/_console.php'; } ``` You can extend other console test cases from this basic `ConsoleTestCase`.