function LinkFieldUITest::setUp

Overrides BrowserTestBase::setUp

File

core/modules/link/tests/src/Functional/LinkFieldUITest.php, line 66

Class

LinkFieldUITest
Tests link field UI functionality.

Namespace

Drupal\Tests\link\Functional

Code

protected function setUp() {
  parent::setUp();
  $this->firstContentType = $this->drupalCreateContentType();
  $this->secondContentType = $this->drupalCreateContentType();
  $this->adminUser = $this->drupalCreateUser([
    'administer content types',
    'administer node fields',
    'administer node display',
  ]);
  $this->helpTextUser = $this->drupalCreateUser([
    'create ' . $this->secondContentType
      ->id() . ' content',
  ]);
  $this->drupalPlaceBlock('system_breadcrumb_block');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.