You are here

protected function LocaleUpdateTest::setUp in Drupal 8

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

Overrides LocaleUpdateBase::setUp

File

core/modules/locale/tests/src/Functional/LocaleUpdateTest.php, line 23

Class

LocaleUpdateTest
Tests for updating the interface translations of projects.

Namespace

Drupal\Tests\locale\Functional

Code

protected function setUp() {
  parent::setUp();
  module_load_include('compare.inc', 'locale');
  module_load_include('fetch.inc', 'locale');
  $admin_user = $this
    ->drupalCreateUser([
    'administer modules',
    'administer site configuration',
    'administer languages',
    'access administration pages',
    'translate interface',
  ]);
  $this
    ->drupalLogin($admin_user);

  // We use German as test language. This language must match the translation
  // file that come with the locale_test module (test.de.po) and can therefore
  // not be chosen randomly.
  $this
    ->addLanguage('de');
}