You are here

public function ThemeInstallerTest::containerBuild in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Extension/ThemeInstallerTest.php \Drupal\system\Tests\Extension\ThemeInstallerTest::containerBuild()

Sets up the base service container for this test.

Extend this method in your test to register additional service overrides that need to persist a DrupalKernel reboot. This method is called whenever the kernel is rebuilt.

Overrides KernelTestBase::containerBuild

See also

\Drupal\simpletest\KernelTestBase::setUp()

\Drupal\simpletest\KernelTestBase::enableModules()

\Drupal\simpletest\KernelTestBase::disableModules()

File

core/modules/system/src/Tests/Extension/ThemeInstallerTest.php, line 28
Contains \Drupal\system\Tests\Extension\ThemeInstallerTest.

Class

ThemeInstallerTest
Tests installing and uninstalling of themes.

Namespace

Drupal\system\Tests\Extension

Code

public function containerBuild(ContainerBuilder $container) {
  parent::containerBuild($container);

  // Some test methods involve ModuleHandler operations, which attempt to
  // rebuild and dump routes.
  $container
    ->register('router.dumper', 'Drupal\\Core\\Routing\\NullMatcherDumper');
}