You are here

protected function ThemeTest::setUp in Drupal 10

Same name in this branch
  1. 10 core/modules/taxonomy/tests/src/Functional/ThemeTest.php \Drupal\Tests\taxonomy\Functional\ThemeTest::setUp()
  2. 10 core/modules/system/tests/src/Functional/Theme/ThemeTest.php \Drupal\Tests\system\Functional\Theme\ThemeTest::setUp()
  3. 10 core/modules/system/tests/src/Kernel/Theme/ThemeTest.php \Drupal\Tests\system\Kernel\Theme\ThemeTest::setUp()
Same name and namespace in other branches
  1. 8 core/modules/taxonomy/tests/src/Functional/ThemeTest.php \Drupal\Tests\taxonomy\Functional\ThemeTest::setUp()
  2. 9 core/modules/taxonomy/tests/src/Functional/ThemeTest.php \Drupal\Tests\taxonomy\Functional\ThemeTest::setUp()

File

core/modules/taxonomy/tests/src/Functional/ThemeTest.php, line 17

Class

ThemeTest
Verifies that various taxonomy pages use the expected theme.

Namespace

Drupal\Tests\taxonomy\Functional

Code

protected function setUp() : void {
  parent::setUp();

  // Make sure we are using distinct default and administrative themes for
  // the duration of these tests.
  \Drupal::service('theme_installer')
    ->install([
    'olivero',
    'claro',
  ]);
  $this
    ->config('system.theme')
    ->set('default', 'olivero')
    ->set('admin', 'claro')
    ->save();

  // Create and log in as a user who has permission to add and edit taxonomy
  // terms and view the administrative theme.
  $admin_user = $this
    ->drupalCreateUser([
    'administer taxonomy',
    'view the administration theme',
  ]);
  $this
    ->drupalLogin($admin_user);
}