You are here

protected function VocabularyTranslationTest::setUp in Drupal 8

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

Overrides TaxonomyTestBase::setUp

File

core/modules/taxonomy/tests/src/Functional/VocabularyTranslationTest.php, line 25

Class

VocabularyTranslationTest
Tests content translation for vocabularies.

Namespace

Drupal\Tests\taxonomy\Functional

Code

protected function setUp() {
  parent::setUp();

  // Create an administrative user.
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'administer taxonomy',
    'administer content translation',
  ]));
}