You are here

public function RedirectTest::setUp in Login Destination 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/RedirectTest.php \Drupal\Tests\login_destination\Functional\RedirectTest::setUp()

Overrides BrowserTestBase::setUp

File

tests/src/Functional/RedirectTest.php, line 35

Class

RedirectTest
Tests redirects.

Namespace

Drupal\Tests\login_destination\Functional

Code

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

  // Create a node page to redirect to.
  $this
    ->drupalCreateContentType([
    'type' => 'page',
    'name' => 'Basic page',
    'display_submitted' => FALSE,
  ]);
  $this
    ->drupalCreateNode();

  // Create an user to test with.
  $this->account = $this
    ->drupalCreateUser([
    'access content',
  ]);
}