You are here

protected function ConfigImportAllTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config/tests/src/Functional/ConfigImportAllTest.php \Drupal\Tests\config\Functional\ConfigImportAllTest::setUp()

Overrides ModuleTestBase::setUp

File

core/modules/config/tests/src/Functional/ConfigImportAllTest.php, line 35

Class

ConfigImportAllTest
Tests the largest configuration import possible with all available modules.

Namespace

Drupal\Tests\config\Functional

Code

protected function setUp() : void {
  parent::setUp();
  $this->webUser = $this
    ->drupalCreateUser([
    'synchronize configuration',
  ]);
  $this
    ->drupalLogin($this->webUser);
}