You are here

public function LinkUriTest::testRouted in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php \Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\process\LinkUriTest::testRouted()

Tests LinkUri::transform().

@dataProvider providerTestRouted

@covers ::transform

Parameters

string $value: The value to pass to LinkUri::transform().

string $expected: The expected return value of LinkUri::transform().

File

core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php, line 52

Class

LinkUriTest
Tests \Drupal\menu_link_content\Plugin\migrate\process\LinkUri.

Namespace

Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\process

Code

public function testRouted($value, $expected) {
  $actual = $this
    ->doTransform($value);
  $this
    ->assertSame($expected, $actual);
}