You are here

protected function HelpTopicTranslationTest::setUp in Drupal 8

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

Overrides HelpTopicTranslatedTestBase::setUp

File

core/modules/help_topics/tests/src/Functional/HelpTopicTranslationTest.php, line 20

Class

HelpTopicTranslationTest
Verifies help topic translations.

Namespace

Drupal\Tests\help_topics\Functional

Code

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

  // Create user and log in.
  $this
    ->drupalLogin($this
    ->createUser([
    'access administration pages',
    'view the administration theme',
    'administer permissions',
  ]));
}