public function LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage in Drupal 10
Same name and namespace in other branches
- 8 core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberForeignTest.php \Drupal\Tests\locale\Kernel\LocaleConfigSubscriberForeignTest::testDefaultConfigLanguage()
- 9 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\KernelCode
public function testDefaultConfigLanguage() {
$this
->assertEquals('hu', $this->configFactory
->getEditable('locale_test.no_translation')
->get('langcode'));
$this
->assertEquals('hu', $this->configFactory
->getEditable('locale_test.translation')
->get('langcode'));
$this
->assertEquals('Hungarian test', $this->configFactory
->getEditable('locale_test.translation')
->get('test'));
}