You are here

public function CckSelectOtherFieldTypeTest::typeProvider in CCK Select Other 8

Returns test arguments.

Return value

array An array of test arguments.

File

tests/src/Functional/CckSelectOtherFieldTypeTest.php, line 64

Class

CckSelectOtherFieldTypeTest
Tests a basic text field.

Namespace

Drupal\Tests\cck_select_other\Functional

Code

public function typeProvider() {
  return [
    'text' => [
      'list_string',
      'blah',
    ],
    'integer' => [
      'list_integer',
      10,
    ],
  ];
}