fixtureCallStorage = $this->objectManager->get(FixtureCallStorage::class); } /** * Checks that fixture can be replaced in global node * * @magentoDataFixtureBeforeTransaction Magento/TestModuleOverrideConfig/_files/fixture2_first_module.php * * @return void */ public function testReplaceFixture(): void { $this->assertEquals(0, $this->fixtureCallStorage->getFixturesCount('fixture2_first_module.php')); $this->assertEquals(1, $this->fixtureCallStorage->getFixturesCount('fixture3_first_module.php')); } }