You are here

public function ConfigIgnoreBrowserTestBase::doExport in Config Ignore 8.2

Same name and namespace in other branches
  1. 8.3 tests/src/Functional/ConfigIgnoreBrowserTestBase.php \Drupal\Tests\config_ignore\Functional\ConfigIgnoreBrowserTestBase::doExport()

Perform a config export to sync. folder.

7 calls to ConfigIgnoreBrowserTestBase::doExport()
ConfigIgnoreHookTest::testSettingsAlterHook in tests/src/Functional/ConfigIgnoreHookTest.php
Test hook implementation of another module.
ConfigIgnoreTest::testSyncTableUpdate in tests/src/Functional/ConfigIgnoreTest.php
Verify that the Sync. table gets update with appropriate ignore actions.
ConfigIgnoreTest::testValidateForceImporting in tests/src/Functional/ConfigIgnoreTest.php
Verify Force Import syntax is working.
ConfigIgnoreTest::testValidateForceImportingWithWildcard in tests/src/Functional/ConfigIgnoreTest.php
Verify excluded configuration works with wildcards.
ConfigIgnoreTest::testValidateIgnoring in tests/src/Functional/ConfigIgnoreTest.php
Verify that config can get ignored.

... See full list

File

tests/src/Functional/ConfigIgnoreBrowserTestBase.php, line 60

Class

ConfigIgnoreBrowserTestBase
Class ConfigIgnoreBrowserTestBase.

Namespace

Drupal\Tests\config_ignore\Functional

Code

public function doExport() {

  // Export the config using the export storage service.
  $this
    ->copyConfig($this
    ->getExportStorage(), $this
    ->getSyncFileStorage());
}