You are here

protected function LocaleConfigSubscriberTest::setUp in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberTest::setUp()
  2. 9 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberTest::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\Kernel

Code

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();
}