protected function LocaleConfigSubscriberTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberTest::setUp()
Overrides KernelTestBase::setUp
File
- core/
modules/ locale/ tests/ src/ Kernel/ LocaleConfigSubscriberTest.php, line 54
Class
- LocaleConfigSubscriberTest
- Tests that shipped configuration translations are updated correctly.
Namespace
Drupal\Tests\locale\KernelCode
protected function setUp() : void {
parent::setUp();
$this
->setUpDefaultLanguage();
$this
->installSchema('locale', [
'locales_source',
'locales_target',
'locales_location',
]);
$this
->setupLanguages();
$this
->installConfig([
'locale_test',
]);
// Simulate this hook invoked which would happen if in a non-kernel test
// or normal environment.
// @see locale_modules_installed()
// @see locale_system_update()
locale_system_set_config_langcodes();
$langcodes = array_keys(\Drupal::languageManager()
->getLanguages());
$names = Locale::config()
->getComponentNames();
Locale::config()
->updateConfigTranslations($names, $langcodes);
$this->configFactory = $this->container
->get('config.factory');
$this->stringStorage = $this->container
->get('locale.storage');
$this->localeConfigManager = $this->container
->get('locale.config_manager');
$this->languageManager = $this->container
->get('language_manager');
$this
->setUpLocale();
}