You are here

public function MathTest::providerTestSequential in Realistic Dummy Content 7.2

Same name and namespace in other branches
  1. 8.2 api/src/test/includes/MathTest.php \Drupal\realistic_dummy_content_api\Test\MathTest::providerTestSequential()

Data provider for $this->testSequential().

File

api/src/test/includes/MathTest.php, line 41

Class

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

Namespace

Drupal\realistic_dummy_content_api\Test

Code

public function providerTestSequential() {
  return array(
    array(
      0,
      3,
      'a',
      0,
    ),
    array(
      0,
      3,
      'a',
      0,
    ),
    array(
      0,
      3,
      'b',
      1,
    ),
    array(
      0,
      3,
      'b',
      1,
    ),
    array(
      0,
      3,
      'c',
      2,
    ),
    array(
      0,
      3,
      'c',
      2,
    ),
    array(
      0,
      3,
      'd',
      3,
    ),
    array(
      0,
      2,
      'd',
      2,
    ),
    array(
      10,
      13,
      'd',
      10,
    ),
    array(
      11,
      12,
      'd',
      11,
    ),
  );
}