function ConfigExportImportUITest::setUp
Overrides BrowserTestBase::setUp
File
- 
              core/modules/ config/ tests/ src/ Functional/ ConfigExportImportUITest.php, line 78 
Class
- ConfigExportImportUITest
- Tests the user interface for importing/exporting configuration.
Namespace
Drupal\Tests\config\FunctionalCode
protected function setUp() : void {
  parent::setUp();
  // Create a content type.
  $this->contentType = $this->drupalCreateContentType([
    'type' => 'test',
  ]);
  $this->drupalLogin($this->drupalCreateUser([
    'export configuration',
    'import configuration',
    'synchronize configuration',
    'access administration pages',
    'administer site configuration',
    'create test content',
    'view the administration theme',
  ]));
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
