You are here

protected function PathMediaFormTest::setUp in Drupal 8

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

Overrides PathTestBase::setUp

File

core/modules/path/tests/src/Functional/PathMediaFormTest.php, line 27

Class

PathMediaFormTest
Tests the path media form UI.

Namespace

Drupal\Tests\path\Functional

Code

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

  // Create test user and log in.
  $web_user = $this
    ->drupalCreateUser([
    'create media',
    'create url aliases',
  ]);
  $this
    ->drupalLogin($web_user);
}