You are here

protected function SourceUrlFormTest::setUp in Migrate Tools 8.5

Same name and namespace in other branches
  1. 8.4 tests/src/Functional/SourceUrlFormTest.php \Drupal\Tests\migrate_tools\Functional\SourceUrlFormTest::setUp()

Overrides BrowserTestBase::setUp

File

tests/src/Functional/SourceUrlFormTest.php, line 48

Class

SourceUrlFormTest
Test the URL column alias edit form.

Namespace

Drupal\Tests\migrate_tools\Functional

Code

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

  // Log in as user 1. Migrations in the UI can only be performed as user 1.
  $this
    ->drupalLogin($this->rootUser);

  // Select the group and migration to test.
  $this->group = 'url_test';
  $this->migration = 'url_404_source_test';
}