You are here

public function LocaleConfigSubscriberForeignTest::testDeleteTranslation in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/locale/src/Tests/LocaleConfigSubscriberForeignTest.php \Drupal\locale\Tests\LocaleConfigSubscriberForeignTest::testDeleteTranslation()

Tests deleting a translation override.

Overrides LocaleConfigSubscriberTest::testDeleteTranslation

File

core/modules/locale/src/Tests/LocaleConfigSubscriberForeignTest.php, line 94
Contains \Drupal\locale\Tests\LocaleConfigSubscriberForeignTest.

Class

LocaleConfigSubscriberForeignTest
Tests default configuration handling with a foreign default language.

Namespace

Drupal\locale\Tests

Code

public function testDeleteTranslation() {
  $config_name = 'locale_test.translation';
  $this
    ->deleteLanguageOverride($config_name, 'test', 'English test', 'de');

  // The German translation in this case will be forced to the Hungarian
  // source so its not overwritten with locale data later.
  $this
    ->assertTranslation($config_name, 'Hungarian test', 'de');
}