You are here

protected function LanguageNegotiationUrlTest::setUp in Drupal 9

Same name in this branch
  1. 9 core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php \Drupal\Tests\language\Functional\LanguageNegotiationUrlTest::setUp()
  2. 9 core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php \Drupal\Tests\language\Unit\LanguageNegotiationUrlTest::setUp()
Same name and namespace in other branches
  1. 8 core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php \Drupal\Tests\language\Functional\LanguageNegotiationUrlTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php, line 35

Class

LanguageNegotiationUrlTest
@coversDefaultClass \Drupal\language\Plugin\LanguageNegotiation\LanguageNegotiationUrl @group language

Namespace

Drupal\Tests\language\Functional

Code

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

  // Create an Article node type.
  if ($this->profile != 'standard') {
    $this
      ->drupalCreateContentType([
      'type' => 'article',
    ]);
  }
  $this->user = $this
    ->drupalCreateUser([
    'administer languages',
    'access administration pages',
    'view the administration theme',
    'administer nodes',
    'create article content',
    'create url aliases',
  ]);
  $this
    ->drupalLogin($this->user);
  $this
    ->drupalGet('admin/config/regional/language/add');
  $this
    ->submitForm([
    'predefined_langcode' => 'de',
  ], 'Add language');
}