You are here

public function CounterTest::providerRowIndexes in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/tests/src/Unit/Plugin/field/CounterTest.php \Drupal\Tests\views\Unit\Plugin\field\CounterTest::providerRowIndexes()

Provides some row index to test.

Return value

array Returns an array of row index to test.

File

core/modules/views/tests/src/Unit/Plugin/field/CounterTest.php, line 105
Contains \Drupal\Tests\views\Unit\Plugin\field\CounterTest.

Class

CounterTest
@coversDefaultClass \Drupal\views\Plugin\views\field\Counter @group views

Namespace

Drupal\Tests\views\Unit\Plugin\field

Code

public function providerRowIndexes() {
  return array(
    array(
      0,
    ),
    array(
      1,
    ),
    array(
      2,
    ),
  );
}