You are here

public function FilteredStorageTest::deleteFilterProvider in Config Filter 8

Same name and namespace in other branches
  1. 8.2 src/Tests/FilteredStorageTest.php \Drupal\config_filter\Tests\FilteredStorageTest::deleteFilterProvider()

Data provider for testDeleteFilter.

File

src/Tests/FilteredStorageTest.php, line 279

Class

FilteredStorageTest
Tests StorageWrapper operations using the CachedStorage.

Namespace

Drupal\config_filter\Tests

Code

public function deleteFilterProvider() {
  return [
    [
      TRUE,
      TRUE,
    ],
    [
      FALSE,
      TRUE,
    ],
    [
      TRUE,
      FALSE,
    ],
    [
      FALSE,
      FALSE,
    ],
  ];
}