You are here

protected function ConfigImporterServiceTestBase::getConfigStorage in Config Importer and Tools 8.2

Same name and namespace in other branches
  1. 8 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\Unit

Code

protected function getConfigStorage() {
  return $this
    ->getObjectAttribute($this->configImporter, 'configStorage');
}