protected function LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth in Lingotek Translation 8.2
Same name and namespace in other branches
- 4.0.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.0.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.1.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.2.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.3.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.4.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.5.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.6.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.7.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- 3.8.x tests/src/Functional/LingotekNodeManageTranslationTabTest.php \Drupal\Tests\lingotek\Functional\LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
Create some terms with relations so we can test if they are listed or not.
2 calls to LingotekNodeManageTranslationTabTest::createRelatedTermsForTestingDepth()
- LingotekNodeManageTranslationTabTest::testNodeTranslationUsingActions in tests/
src/ Functional/ LingotekNodeManageTranslationTabTest.php - Tests that a node can be translated using the actions on the management page.
- LingotekNodeManageTranslationTabTest::testNodeTranslationUsingLinks in tests/
src/ Functional/ LingotekNodeManageTranslationTabTest.php - Tests that a node can be translated using the links on the management page.
File
- tests/
src/ Functional/ LingotekNodeManageTranslationTabTest.php, line 774
Class
- LingotekNodeManageTranslationTabTest
- Tests translating a node using the bulk management form.
Namespace
Drupal\Tests\lingotek\FunctionalCode
protected function createRelatedTermsForTestingDepth() {
$term3 = Term::create([
'name' => 'Hominid',
'vid' => $this->vocabulary
->id(),
]);
$term3
->save();
$term2 = Term::load(2);
$term2->field_tags = $term3;
$term2
->save();
$term4 = Term::create([
'name' => 'Ruminant',
'vid' => $this->vocabulary
->id(),
]);
$term4
->save();
$term3 = Term::load(3);
$term3->field_tags = $term4;
$term3
->save();
}