protected function ThemeTest::setUp in Drupal 9
Same name in this branch
- 9 core/modules/taxonomy/tests/src/Functional/ThemeTest.php \Drupal\Tests\taxonomy\Functional\ThemeTest::setUp()
- 9 core/modules/system/tests/src/Functional/System/ThemeTest.php \Drupal\Tests\system\Functional\System\ThemeTest::setUp()
- 9 core/modules/system/tests/src/Functional/Theme/ThemeTest.php \Drupal\Tests\system\Functional\Theme\ThemeTest::setUp()
- 9 core/modules/system/tests/src/Kernel/Theme/ThemeTest.php \Drupal\Tests\system\Kernel\Theme\ThemeTest::setUp()
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/System/ThemeTest.php \Drupal\Tests\system\Functional\System\ThemeTest::setUp()
Overrides BrowserTestBase::setUp
File
- core/modules/ system/ tests/ src/ Functional/ System/ ThemeTest.php, line 41 
Class
- ThemeTest
- Tests the theme interface functionality by enabling and switching themes, and using an administration theme.
Namespace
Drupal\Tests\system\Functional\SystemCode
protected function setUp() : void {
  parent::setUp();
  $this
    ->drupalCreateContentType([
    'type' => 'page',
    'name' => 'Basic page',
  ]);
  $this->adminUser = $this
    ->drupalCreateUser([
    'access administration pages',
    'view the administration theme',
    'administer themes',
    'bypass node access',
    'administer blocks',
  ]);
  $this
    ->drupalLogin($this->adminUser);
  $this->node = $this
    ->drupalCreateNode();
  $this
    ->drupalPlaceBlock('local_tasks_block');
}