protected function LocaleExportTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/locale/tests/src/Functional/LocaleExportTest.php \Drupal\Tests\locale\Functional\LocaleExportTest::setUp()
Overrides BrowserTestBase::setUp
File
- core/modules/ locale/ tests/ src/ Functional/ LocaleExportTest.php, line 35 
Class
- LocaleExportTest
- Tests the exportation of locale files.
Namespace
Drupal\Tests\locale\FunctionalCode
protected function setUp() : void {
  parent::setUp();
  $this->adminUser = $this
    ->drupalCreateUser([
    'administer languages',
    'translate interface',
    'access administration pages',
  ]);
  $this
    ->drupalLogin($this->adminUser);
  // Copy test po files to the translations directory.
  \Drupal::service('file_system')
    ->copy(__DIR__ . '/../../../tests/test.de.po', 'translations://', FileSystemInterface::EXISTS_REPLACE);
  \Drupal::service('file_system')
    ->copy(__DIR__ . '/../../../tests/test.xx.po', 'translations://', FileSystemInterface::EXISTS_REPLACE);
}