function LinkFieldUITest::setUp
Overrides BrowserTestBase::setUp
File
- 
              core/modules/ link/ tests/ src/ Functional/ LinkFieldUITest.php, line 57 
Class
- LinkFieldUITest
- Tests link field UI functionality.
Namespace
Drupal\Tests\link\FunctionalCode
protected function setUp() : void {
  parent::setUp();
  $this->contentType = $this->drupalCreateContentType();
  $this->adminUser = $this->drupalCreateUser([
    'administer content types',
    'administer node fields',
    'administer node display',
  ]);
  $this->helpTextUser = $this->drupalCreateUser([
    'create ' . $this->contentType
      ->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.
