function TextCckTest::testGetFieldType

Same name in this branch
  1. 8.9.x core/modules/text/tests/src/Unit/Migrate/TextCckTest.php \Drupal\Tests\text\Unit\Migrate\TextCckTest::testGetFieldType()

@covers ::getFieldType
@dataProvider getFieldTypeProvider

File

core/modules/text/tests/src/Unit/Plugin/migrate/cckfield/TextCckTest.php, line 161

Class

TextCckTest
@coversDefaultClass \Drupal\text\Plugin\migrate\cckfield\TextField[[api-linebreak]] @group text @group legacy

Namespace

Drupal\Tests\text\Unit\Plugin\migrate\cckfield

Code

public function testGetFieldType($expected_type, $widget_type, array $settings = []) {
  $row = new Row([
    'widget_type' => $widget_type,
  ], [
    'widget_type' => [],
  ]);
  $row->setSourceProperty('global_settings', $settings);
  $this->assertSame($expected_type, $this->plugin
    ->getFieldType($row));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.