protected function LingotekSystemSiteExistingBulkTranslationTest::setUp in Lingotek Translation 3.6.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 4.0.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.0.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.1.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.2.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.3.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.4.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.5.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.7.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
- 3.8.x tests/src/Functional/LingotekSystemSiteExistingBulkTranslationTest.php \Drupal\Tests\lingotek\Functional\LingotekSystemSiteExistingBulkTranslationTest::setUp()
Throws
\Exception
Overrides LingotekTestBase::setUp
File
- tests/
src/ Functional/ LingotekSystemSiteExistingBulkTranslationTest.php, line 24
Class
- LingotekSystemSiteExistingBulkTranslationTest
- Tests translating a config object using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Login as admin.
$this
->drupalLogin($this->rootUser);
// Add a language.
$language = ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX');
$language
->save();
// This is a hack for avoiding writing different lingotek endpoint mocks.
\Drupal::state()
->set('lingotek.uploaded_content_type', 'system.site');
// Create a translation for system.site object.
$config = \Drupal::languageManager()
->getLanguageConfigOverride('es', 'system.site');
$config
->set('name', 'Translated Site Name')
->save();
}