You are here

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

MathTest
Tests for \Drupal\realistic_dummy_content_api\includes\Math.

Namespace

Drupal\Tests\realistic_dummy_content_api\Unit\includes

Code

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,
    ],
  ];
}