You are here

public function LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage in Zircon Profile 8.0

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

Tests that the language of default configuration was updated.

File

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

Class

LocaleConfigSubscriberForeignTest
Tests default configuration handling with a foreign default language.

Namespace

Drupal\locale\Tests

Code

public function testDefaultConfigLanguage() {
  $this
    ->assertEqual('hu', $this->configFactory
    ->getEditable('locale_test.no_translation')
    ->get('langcode'));
  $this
    ->assertEqual('hu', $this->configFactory
    ->getEditable('locale_test.translation')
    ->get('langcode'));
  $this
    ->assertEqual($this->configFactory
    ->getEditable('locale_test.translation')
    ->get('test'), 'Hungarian test');
}