You are here

public function LinkFieldUITest::testFieldUI in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/link/tests/src/Functional/LinkFieldUITest.php \Drupal\Tests\link\Functional\LinkFieldUITest::testFieldUI()

Tests the link field UI.

File

core/modules/link/tests/src/Functional/LinkFieldUITest.php, line 75

Class

LinkFieldUITest
Tests link field UI functionality.

Namespace

Drupal\Tests\link\Functional

Code

public function testFieldUI() {
  foreach ($this
    ->providerTestFieldUI() as $item) {
    list($cardinality, $link_type, $title, $label, $field_name, $default_uri) = $item;
    $this
      ->runFieldUIItem($cardinality, $link_type, $title, $label, $field_name, $default_uri);
  }
}