objectManager = Bootstrap::getObjectManager(); $this->configProvider = $this->objectManager->get(ConfigProvider::class); } /** * @magentoConfigFixture current_store customer/password/autocomplete_on_storefront 1 * * @return void */ public function testAutocompletePasswordEnabled(): void { $this->assertEquals('on', $this->configProvider->getConfig()['autocomplete']); } /** * @magentoConfigFixture current_store customer/password/autocomplete_on_storefront 0 * * @return void */ public function testAutocompletePasswordDisabled(): void { $this->assertEquals('off', $this->configProvider->getConfig()['autocomplete']); } }