loading custom fixtures for acceptance and functional tests

Advanced app template has FixtureHelper class which loads all fixtures mentioned in its fixtures method before every functional (and acceptance) test execution:




    public function fixtures()

    {

        return [

            'user' => [

                'class' => UserFixture::className(),

                'dataFile' => '@tests/codeception/common/fixtures/data/init_login.php',

            ],

        ];

    }



It seems to load the so-called user fixture all the time, for every test. kind of like a global fixture.

I need to specify for each Cept file or Cest class to load It’s own fixtures. just like it is possible in yii\codeception\TestCase for unit test classes. any ideas guys?

really? nobody has no idea?