public function ContentEntityTestBase::setUp

8 calls to ContentEntityTestBase::setUp()
8 methods override ContentEntityTestBase::setUp()

File

sources/content/tests/src/Kernel/ContentEntityTestBase.php, line 34

Class

ContentEntityTestBase
Base class for content entity kernel tests.

Namespace

Drupal\Tests\tmgmt_content\Kernel

Code

public function setUp() : void {
  parent::setUp();

  // Add the languages.
  $this
    ->installConfig([
    'language',
  ]);
  ConfigurableLanguage::createFromLangcode('de')
    ->save();
  ConfigurableLanguage::createFromLangcode('cs')
    ->save();
  $this
    ->installEntitySchema('tmgmt_job');
  $this
    ->installEntitySchema('tmgmt_job_item');
  $this
    ->installEntitySchema('tmgmt_remote');
  $this
    ->installEntitySchema('tmgmt_message');
  $this
    ->installEntitySchema('entity_test_mul');
  $this->container
    ->get('content_translation.manager')
    ->setEnabled('entity_test_mul', 'entity_test_mul', TRUE);
  \Drupal::service('router.builder')
    ->rebuild();
  tmgmt_translator_auto_create(\Drupal::service('plugin.manager.tmgmt.translator')
    ->getDefinition('test_translator'));
}