You are here

protected function ContentTranslationUITestBase::getTranslation in Drupal 8

Same name in this branch
  1. 8 core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php \Drupal\content_translation\Tests\ContentTranslationUITestBase::getTranslation()
  2. 8 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getTranslation()
Same name and namespace in other branches
  1. 9 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getTranslation()
  2. 10 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::getTranslation()

Returns the translation object to use to retrieve the translated values.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity being tested.

string $langcode: The language code identifying the translation to be retrieved.

Return value

\Drupal\Core\TypedData\TranslatableInterface The translation object to act on.

1 call to ContentTranslationUITestBase::getTranslation()
ContentTranslationUITestBase::doTestBasicTranslation in core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php
Tests the basic translation workflow.

File

core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php, line 462

Class

ContentTranslationUITestBase
Tests the Content Translation UI.

Namespace

Drupal\Tests\content_translation\Functional

Code

protected function getTranslation(EntityInterface $entity, $langcode) {
  return $entity
    ->getTranslation($langcode);
}