protected function ConfigImporterServiceTestBase::getConfigStorage in Config Importer and Tools 8
Same name and namespace in other branches
- 8.2 tests/src/Unit/ConfigImporterServiceTestBase.php \Drupal\Tests\config_import\Unit\ConfigImporterServiceTestBase::getConfigStorage()
Get current configuration storage.
Return value
StorageInterface Active storage of configurations.
1 call to ConfigImporterServiceTestBase::getConfigStorage()
- ConfigImporterServiceTest::testImportConfigs in tests/
src/ Unit/ ConfigImporterServiceTest.php - Check that configuration will be properly imported.
File
- tests/
src/ Unit/ ConfigImporterServiceTestBase.php, line 84
Class
- ConfigImporterServiceTestBase
- Base abstraction for testing the configuration importer service.
Namespace
Drupal\Tests\config_import\UnitCode
protected function getConfigStorage() {
return $this
->getObjectAttribute($this->configImporter, 'configStorage');
}