You are here

protected function AllowedFormatsTest::setUp in Allowed Formats 8

Overrides BrowserTestBase::setUp

File

tests/src/Functional/AllowedFormatsTest.php, line 55

Class

AllowedFormatsTest
Tests the basic functionality of Allowed Formats.

Namespace

Drupal\Tests\allowed_formats\Functional

Code

protected function setUp() {
  parent::setUp();
  $this->adminUser = $this
    ->drupalCreateUser([
    'administer filters',
    'administer entity_test fields',
  ]);
  $this->webUser = $this
    ->drupalCreateUser([
    'administer entity_test content',
    'administer taxonomy',
  ]);
}