public function StorageReplaceDataWrapperTest::providerCollections in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/Core/Config/Storage/StorageReplaceDataWrapperTest.php \Drupal\KernelTests\Core\Config\Storage\StorageReplaceDataWrapperTest::providerCollections()
Data provider for testing different collections.
Return value
array Returns an array of collection names.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Config/ Storage/ StorageReplaceDataWrapperTest.php, line 86
Class
- StorageReplaceDataWrapperTest
- Tests StorageReplaceDataWrapper operations.
Namespace
Drupal\KernelTests\Core\Config\StorageCode
public function providerCollections() {
return [
[
StorageInterface::DEFAULT_COLLECTION,
],
[
'foo.bar',
],
];
}