You are here

protected function StableBaseThemeUpdateTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Update/StableBaseThemeUpdateTest.php \Drupal\system\Tests\Update\StableBaseThemeUpdateTest::setUp()

Overrides WebTestBase::setUp() for update testing.

The main difference in this method is that rather than performing the installation via the installer, a database is loaded. Additional work is then needed to set various things such as the config directories and the container that would normally be done via the installer.

Overrides UpdatePathTestBase::setUp

File

core/modules/system/src/Tests/Update/StableBaseThemeUpdateTest.php, line 39
Contains \Drupal\system\Tests\Update\StableBaseThemeUpdateTest.

Class

StableBaseThemeUpdateTest
Tests the upgrade path for introducing the Stable base theme.

Namespace

Drupal\system\Tests\Update

Code

protected function setUp() {
  parent::setUp();
  $this->themeHandler = $this->container
    ->get('theme_handler');
  $this->themeHandler
    ->refreshInfo();
}