protected function LingotekGetSourceDataTest::setUp in Lingotek Translation 3.8.x
Same name and namespace in other branches
- 8.2 tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 4.0.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.0.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.1.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.2.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.3.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.4.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.5.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.6.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
- 3.7.x tests/src/Functional/LingotekGetSourceDataTest.php \Drupal\Tests\lingotek\Functional\LingotekGetSourceDataTest::setUp()
Overrides LingotekTestBase::setUp
File
- tests/
src/ Functional/ LingotekGetSourceDataTest.php, line 24
Class
- LingotekGetSourceDataTest
- Tests the Lingotek content service extract data from entities correctly.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function setUp() : void {
parent::setUp();
// Login as admin.
$this
->drupalLogin($this->rootUser);
// Create Article node type.
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
// Enable translation for the current entity type and ensure the change is
// picked up.
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
$this
->applyEntityUpdates();
$this
->saveLingotekContentTranslationSettingsForNodeTypes();
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
// Rebuild the container so that the new languages are picked up by services
// that hold a list of languages.
$this
->rebuildContainer();
}