function ConfigTestTrait::copyConfig

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/ConfigTestTrait.php \Drupal\Tests\ConfigTestTrait::copyConfig()
  2. 10 core/tests/Drupal/Tests/ConfigTestTrait.php \Drupal\Tests\ConfigTestTrait::copyConfig()
  3. 8.9.x core/tests/Drupal/Tests/ConfigTestTrait.php \Drupal\Tests\ConfigTestTrait::copyConfig()

Copies configuration objects from source storage to target storage.

Parameters

\Drupal\Core\Config\StorageInterface $source_storage: The source config storage service.

\Drupal\Core\Config\StorageInterface $target_storage: The target config storage service.

1 call to ConfigTestTrait::copyConfig()
ContentTranslationConfigImportTest::setUp in core/modules/content_translation/tests/src/Kernel/ContentTranslationConfigImportTest.php

File

core/tests/Drupal/Tests/ConfigTestTrait.php, line 56

Class

ConfigTestTrait
Provides helper methods to deal with config system objects in tests.

Namespace

Drupal\Tests

Code

protected function copyConfig(StorageInterface $source_storage, StorageInterface $target_storage) {
  static::replaceStorageContents($source_storage, $target_storage);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.