function KernelTestBase::installConfig
Same name in other branches
- 8.9.x core/modules/simpletest/src/KernelTestBase.php \Drupal\simpletest\KernelTestBase::installConfig()
- 8.9.x core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::installConfig()
- 10 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::installConfig()
- 11.x core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::installConfig()
Installs default configuration for a given list of modules.
Parameters
string|string[] $modules: A module or list of modules for which to install default configuration.
Throws
\LogicException If any module in $modules is not enabled.
323 calls to KernelTestBase::installConfig()
- AggregatorItemViewsFieldAccessTest::setUp in core/
modules/ aggregator/ tests/ src/ Kernel/ Views/ AggregatorItemViewsFieldAccessTest.php - AggregatorTitleTest::setUp in core/
modules/ aggregator/ tests/ src/ Kernel/ AggregatorTitleTest.php - AreaDisplayLinkTest::setUp in core/
modules/ views/ tests/ src/ Kernel/ Handler/ AreaDisplayLinkTest.php - AreaEntityTest::setUpFixtures in core/
modules/ views/ tests/ src/ Kernel/ Handler/ AreaEntityTest.php - Sets up the configuration and schema of views and views_test_data modules.
- AreaTextTest::setUp in core/
modules/ views/ tests/ src/ Kernel/ Handler/ AreaTextTest.php
File
-
core/
tests/ Drupal/ KernelTests/ KernelTestBase.php, line 709
Class
- KernelTestBase
- Base class for functional integration tests.
Namespace
Drupal\KernelTestsCode
protected function installConfig($modules) {
foreach ((array) $modules as $module) {
if (!$this->container
->get('module_handler')
->moduleExists($module)) {
throw new \LogicException("{$module} module is not enabled.");
}
try {
$this->container
->get('config.installer')
->installDefaultConfig('module', $module);
} catch (\Exception $e) {
throw new \Exception(sprintf('Exception when installing config for module %s, message was: %s', $module, $e->getMessage()), 0, $e);
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.