function KernelTestBase::config
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::config()
- 8.9.x core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::config()
- 11.x core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::config()
Configuration accessor for tests. Returns non-overridden configuration.
Parameters
string $name: The configuration name.
Return value
\Drupal\Core\Config\Config The configuration object with original configuration data.
60 calls to KernelTestBase::config()
- BlockConfigSchemaTest::testBlockConfigSchema in core/
modules/ block/ tests/ src/ Kernel/ BlockConfigSchemaTest.php - Tests the block config schema for block plugins.
- CommandsTest::testAttachedSettings in core/
tests/ Drupal/ KernelTests/ Core/ Ajax/ CommandsTest.php - Regression test: Settings command exists regardless of JS aggregation.
- ConfigCRUDTest::testCRUD in core/
tests/ Drupal/ KernelTests/ Core/ Config/ ConfigCRUDTest.php - Tests CRUD operations.
- ConfigCRUDTest::testDataTypes in core/
tests/ Drupal/ KernelTests/ Core/ Config/ ConfigCRUDTest.php - Tests data type handling.
- ConfigCRUDTest::testNameValidation in core/
tests/ Drupal/ KernelTests/ Core/ Config/ ConfigCRUDTest.php - Tests the validation of configuration object names.
File
-
core/
tests/ Drupal/ KernelTests/ KernelTestBase.php, line 464
Class
- KernelTestBase
- Base class for functional integration tests.
Namespace
Drupal\KernelTestsCode
protected function config($name) {
return $this->container
->get('config.factory')
->getEditable($name);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.