You are here

public function LocaleConfigSubscriberForeignTest::testCreateActiveTranslation in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testCreateActiveTranslation()

Tests creating translations of shipped configuration.

File

core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php, line 56

Class

LocaleConfigSubscriberForeignTest
Tests default configuration handling with a foreign default language.

Namespace

Drupal\Tests\locale\Kernel

Code

public function testCreateActiveTranslation() {
  $config_name = 'locale_test.no_translation';
  $this
    ->saveLanguageActive($config_name, 'test', 'Test (Hungarian)', 'hu');
  $this
    ->assertTranslation($config_name, 'Test (Hungarian)', 'hu');
}