function LinkUriTest::providerTestRouted
Provides test cases for LinkUriTest::testTransform().
Return value
array An array of test cases, each which the following values:
- The value array to pass to LinkUri::transform().
- The expected path returned by LinkUri::transform().
File
- 
              core/modules/ menu_link_content/ tests/ src/ Kernel/ Plugin/ migrate/ process/ LinkUriTest.php, line 77 
Class
Namespace
Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\processCode
public function providerTestRouted() {
  $tests = [];
  $value = 'http://example.com';
  $expected = 'http://example.com';
  $tests['with_scheme'] = [
    $value,
    $expected,
  ];
  $value = '<front>';
  $expected = 'internal:/';
  $tests['front'] = [
    $value,
    $expected,
  ];
  $value = '<nolink>';
  $expected = 'route:<nolink>';
  $tests['nolink'] = [
    $value,
    $expected,
  ];
  return $tests;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
