You are here

protected function FieldRenderedEntityTranslationTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php \Drupal\Tests\views\Functional\Entity\FieldRenderedEntityTranslationTest::setUp()

Overrides ViewTestBase::setUp

File

core/modules/views/tests/src/Functional/Entity/FieldRenderedEntityTranslationTest.php, line 46

Class

FieldRenderedEntityTranslationTest
Tests the rendering of the 'rendered_entity' field and translations.

Namespace

Drupal\Tests\views\Functional\Entity

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp($import_test_views);
  $this->entityTypeManager = $this->container
    ->get('entity_type.manager');
  $node_type = $this->entityTypeManager
    ->getStorage('node_type')
    ->create([
    'type' => 'article',
    'label' => 'Article',
  ]);
  $node_type
    ->save();

  /** @var \Drupal\content_translation\ContentTranslationManagerInterface $content_translation_manager */
  $content_translation_manager = $this->container
    ->get('content_translation.manager');
  $content_translation_manager
    ->setEnabled('node', 'article', TRUE);
  $language = $this->entityTypeManager
    ->getStorage('configurable_language')
    ->create([
    'id' => 'es',
    'label' => 'Spanish',
  ]);
  $language
    ->save();

  // Rebuild the container to setup the language path processors.
  $this
    ->rebuildContainer();
}