public function CounterTest::providerTestSet in Purge 8.3
Provides test data for testSet().
File
- tests/
src/ Unit/ Counter/ CounterTest.php, line 143
Class
- CounterTest
- @coversDefaultClass \Drupal\purge\Counter\Counter
Namespace
Drupal\Tests\purge\Unit\CounterCode
public function providerTestSet() : array {
return [
[
0,
],
[
5,
],
[
1.3,
],
[
8.9,
],
];
}