You are here

public function FilteredStorageTest::deleteAllFilterProvider in Config Filter 8

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

Data provider for testDeleteAllFilter.

File

src/Tests/FilteredStorageTest.php, line 361

Class

FilteredStorageTest
Tests StorageWrapper operations using the CachedStorage.

Namespace

Drupal\config_filter\Tests

Code

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