public function IgnoreKernelTest::exportProvider in Config Ignore 8.2
Same name and namespace in other branches
- 8.3 tests/src/Kernel/IgnoreKernelTest.php \Drupal\Tests\config_ignore\Kernel\IgnoreKernelTest::exportProvider()
Provides the test cases for the export.
Return value
array
File
- tests/
src/ Kernel/ IgnoreKernelTest.php, line 232
Class
- IgnoreKernelTest
- Test the transformations.
Namespace
Drupal\Tests\config_ignore\KernelCode
public function exportProvider() {
// @todo: add meaningful tests in https://www.drupal.org/project/config_ignore/issues/2857247
return [
'empty test' => [
// For now exporting is always off.
[
'off',
],
// The ignore config.
[],
// Modifications to the active config keyed by language.
[],
// Modifications to the sync config keyed by language.
[],
// Modifications to the expected config keyed by language.
[],
],
];
}