function ContentModerationStateTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php \Drupal\Tests\content_moderation\Kernel\ContentModerationStateTest::setUp()
  2. 8.9.x core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php \Drupal\Tests\content_moderation\Kernel\ContentModerationStateTest::setUp()
  3. 11.x core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php \Drupal\Tests\content_moderation\Kernel\ContentModerationStateTest::setUp()

Overrides KernelTestBase::setUp

1 call to ContentModerationStateTest::setUp()
WorkspacesContentModerationStateTest::setUp in core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php
1 method overrides ContentModerationStateTest::setUp()
WorkspacesContentModerationStateTest::setUp in core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php

File

core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php, line 88

Class

ContentModerationStateTest
Tests links between a content entity and a content_moderation_state entity.

Namespace

Drupal\Tests\content_moderation\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this->installSchema('node', 'node_access');
  $this->installEntitySchema('node');
  $this->installEntitySchema('user');
  $this->installEntitySchema($this->revEntityTypeId);
  $this->installEntitySchema('entity_test_no_bundle');
  $this->installEntitySchema('entity_test_mulrevpub');
  $this->installEntitySchema('block_content');
  $this->installEntitySchema('media');
  $this->installEntitySchema('file');
  $this->installEntitySchema('taxonomy_term');
  $this->installEntitySchema('content_moderation_state');
  $this->installConfig('content_moderation');
  $this->installSchema('file', 'file_usage');
  $this->installConfig([
    'field',
    'file',
    'filter',
    'image',
    'media',
    'node',
    'system',
  ]);
  // Add the French language.
  ConfigurableLanguage::createFromLangcode('fr')->save();
  $this->entityTypeManager = $this->container
    ->get('entity_type.manager');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.