You are here

protected function ContentTranslationTestBase::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/content_translation/src/Tests/ContentTranslationTestBase.php \Drupal\content_translation\Tests\ContentTranslationTestBase::setUp()

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides WebTestBase::setUp

11 calls to ContentTranslationTestBase::setUp()
BlockContentTranslationUITest::setUp in core/modules/block_content/src/Tests/BlockContentTranslationUITest.php
Sets up a Drupal site for running functional and integration tests.
CommentTranslationUITest::setUp in core/modules/comment/src/Tests/CommentTranslationUITest.php
Sets up a Drupal site for running functional and integration tests.
ContentTestTranslationUITest::setUp in core/modules/content_translation/src/Tests/ContentTestTranslationUITest.php
Sets up a Drupal site for running functional and integration tests.
ContentTranslationSyncImageTest::setUp in core/modules/content_translation/src/Tests/ContentTranslationSyncImageTest.php
Sets up a Drupal site for running functional and integration tests.
ContentTranslationWorkflowsTest::setUp in core/modules/content_translation/src/Tests/ContentTranslationWorkflowsTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

11 methods override ContentTranslationTestBase::setUp()
BlockContentTranslationUITest::setUp in core/modules/block_content/src/Tests/BlockContentTranslationUITest.php
Sets up a Drupal site for running functional and integration tests.
CommentTranslationUITest::setUp in core/modules/comment/src/Tests/CommentTranslationUITest.php
Sets up a Drupal site for running functional and integration tests.
ContentTestTranslationUITest::setUp in core/modules/content_translation/src/Tests/ContentTestTranslationUITest.php
Sets up a Drupal site for running functional and integration tests.
ContentTranslationSyncImageTest::setUp in core/modules/content_translation/src/Tests/ContentTranslationSyncImageTest.php
Sets up a Drupal site for running functional and integration tests.
ContentTranslationWorkflowsTest::setUp in core/modules/content_translation/src/Tests/ContentTranslationWorkflowsTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

File

core/modules/content_translation/src/Tests/ContentTranslationTestBase.php, line 87
Contains \Drupal\content_translation\Tests\ContentTranslationTestBase.

Class

ContentTranslationTestBase
Base class for content translation tests.

Namespace

Drupal\content_translation\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->setupLanguages();
  $this
    ->setupBundle();
  $this
    ->enableTranslation();
  $this
    ->setupUsers();
  $this
    ->setupTestFields();
  $this->manager = $this->container
    ->get('content_translation.manager');
  $this->controller = $this->manager
    ->getTranslationHandler($this->entityTypeId);

  // Rebuild the container so that the new languages are picked up by services
  // that hold a list of languages.
  $this
    ->rebuildContainer();
}