protected function LingotekConfigStatusDownloadTargetTest::setUp in Lingotek Translation 3.1.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 4.0.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.0.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.2.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.3.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.4.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.5.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.6.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.7.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
- 3.8.x tests/src/Functional/LingotekConfigStatusDownloadTargetTest.php \Drupal\Tests\lingotek\Functional\LingotekConfigStatusDownloadTargetTest::setUp()
Overrides LingotekTestBase::setUp
File
- tests/
src/ Functional/ LingotekConfigStatusDownloadTargetTest.php, line 21
Class
- LingotekConfigStatusDownloadTargetTest
- Tests translating a field using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Create Article node types.
$type = $this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
node_add_body_field($type);
// Add a language.
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_MX')
->save();
$this
->saveLingotekConfigTranslationSettings([
'node_fields' => 'automatic',
]);
// This is a hack for avoiding writing different lingotek endpoint mocks.
\Drupal::state()
->set('lingotek.uploaded_content_type', 'body');
}