public function MathTest::providerTestSequential in Realistic Dummy Content 3.x
Data provider for $this->testSequential().
File
- api/
tests/ src/ Unit/ includes/ MathTest.php, line 40
Class
Namespace
Drupal\Tests\realistic_dummy_content_api\Unit\includesCode
public function providerTestSequential() {
return [
[
0,
3,
'a',
0,
],
[
0,
3,
'a',
0,
],
[
0,
3,
'b',
1,
],
[
0,
3,
'b',
1,
],
[
0,
3,
'c',
2,
],
[
0,
3,
'c',
2,
],
[
0,
3,
'd',
3,
],
[
0,
2,
'd',
2,
],
[
10,
13,
'd',
10,
],
[
11,
12,
'd',
11,
],
];
}