You are here

public function EntityDisplayTraitTest::hasSelectOtherWidgetProvider in CCK Select Other 8

Provide parameters for testHasSelectOtherWidget().

Return value

array An array of test parameters.

File

tests/src/Unit/EntityDisplayTraitTest.php, line 112

Class

EntityDisplayTraitTest
Tests the entity display trait.

Namespace

Drupal\Tests\cck_select_other\Unit

Code

public function hasSelectOtherWidgetProvider() {
  return [
    [
      'cck_select_other',
      TRUE,
    ],
    [
      'textfield',
      FALSE,
    ],
  ];
}