You are here

public function ConfigSnapshotStorageTest::providerCollections in Config Snapshot 8

Data provider for testing different collections.

Return value

array Returns an array of collection names.

File

tests/src/Kernel/ConfigSnapshotStorageTest.php, line 126

Class

ConfigSnapshotStorageTest
Tests ConfigSnapshotStorage operations.

Namespace

Drupal\Tests\config_snapshot\Kernel

Code

public function providerCollections() {
  return [
    [
      StorageInterface::DEFAULT_COLLECTION,
    ],
    [
      'foo.bar',
    ],
  ];
}