function LinkUriTest::testRouted

Same name and namespace in other branches
  1. 9 core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php \Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\process\LinkUriTest::testRouted()
  2. 10 core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php \Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\process\LinkUriTest::testRouted()
  3. 11.x 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().

1 call to LinkUriTest::testRouted()
LinkUriTest::testRoutedLegacy in core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php
Tests legacy handling for LinkUri::transform().

File

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

Class

LinkUriTest
Tests <a href="/api/drupal/core%21modules%21menu_link_content%21src%21Plugin%21migrate%21process%21LinkUri.php/class/LinkUri/8.9.x" title="Generates an internal URI from the source value." class="local">\Drupal\menu_link_content\Plugin\migrate\process\LinkUri</a>.

Namespace

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

Code

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

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