function LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage

Same name and namespace in other branches
  1. 9 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage()
  2. 10 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage()
  3. 11.x core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage()

Tests that the language of default configuration was updated.

File

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

Class

LocaleConfigSubscriberForeignTest
Tests default configuration handling with a foreign default language.

Namespace

Drupal\Tests\locale\Kernel

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.