You are here

protected function FieldEntityTranslationTest::setUp in Drupal 8

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

Overrides ViewTestBase::setUp

File

core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php, line 42

Class

FieldEntityTranslationTest
Tests the rendering of fields (base fields) and their translations.

Namespace

Drupal\Tests\views\Functional\Entity

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp($import_test_views);
  $node_type = NodeType::create([
    'type' => 'article',
    'label' => 'Article',
  ]);
  $node_type
    ->save();

  /** @var \Drupal\content_translation\ContentTranslationManagerInterface $content_translation_manager */
  $content_translation_manager = \Drupal::service('content_translation.manager');
  $content_translation_manager
    ->setEnabled('node', 'article', TRUE);
  $language = ConfigurableLanguage::create([
    'id' => 'es',
    'label' => 'Spanish',
  ]);
  $language
    ->save();

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