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\FunctionalCode
public function typeProvider() {
return [
'text' => [
'list_string',
'blah',
],
'integer' => [
'list_integer',
10,
],
];
}