You are here

public function LocaleConfigSubscriberForeignTest::testLocaleCreateActiveTranslation 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::testLocaleCreateActiveTranslation()

Tests importing community translations of shipped configuration.

File

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

Class

LocaleConfigSubscriberForeignTest
Tests default configuration handling with a foreign default language.

Namespace

Drupal\Tests\locale\Kernel

Code

public function testLocaleCreateActiveTranslation() {
  $config_name = 'locale_test.no_translation';
  $this
    ->saveLocaleTranslationData($config_name, 'test', 'Test', 'Test (Hungarian)', 'hu', TRUE);
  $this
    ->assertTranslation($config_name, 'Test (Hungarian)', 'hu', FALSE);
}