fixtures() public method
Declares the fixtures that are needed by the current test case. The return value of this method must be an array of fixture configurations. For example, [
// anonymous fixture
PostFixture::className(),
// "users" fixture
'users' => UserFixture::className(),
// "cache" fixture with configuration
'cache' => [
'class' => CacheFixture::className(),
'host' => 'xxx',
],
]
Note that the actual fixtures used for a t