You are here

protected function CommentTranslationUITest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/tests/src/Functional/CommentTranslationUITest.php \Drupal\Tests\comment\Functional\CommentTranslationUITest::setUp()
  2. 10 core/modules/comment/tests/src/Functional/CommentTranslationUITest.php \Drupal\Tests\comment\Functional\CommentTranslationUITest::setUp()

Overrides ContentTranslationTestBase::setUp

File

core/modules/comment/tests/src/Functional/CommentTranslationUITest.php, line 65

Class

CommentTranslationUITest
Tests the Comment Translation UI.

Namespace

Drupal\Tests\comment\Functional

Code

protected function setUp() {
  $this->entityTypeId = 'comment';
  $this->nodeBundle = 'article';
  $this->bundle = 'comment_article';
  $this->testLanguageSelector = FALSE;
  $this->subject = $this
    ->randomMachineName();
  parent::setUp();
}