public function LinkUriTest::testNotRouted in Drupal 8
Same name and namespace in other branches
- 9 core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php \Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\process\LinkUriTest::testNotRouted()
Tests that Non routed URLs throws an exception.
@dataProvider providerTestNotRouted
Parameters
string $value: The value to pass to LinkUri::transform().
string $exception_message: The expected exception message.
File
- core/
modules/ menu_link_content/ tests/ src/ Kernel/ Plugin/ migrate/ process/ LinkUriTest.php, line 105
Class
Namespace
Drupal\Tests\menu_link_content\Kernel\Plugin\migrate\processCode
public function testNotRouted($value, $exception_message) {
$this
->expectException(MigrateException::class);
$this
->expectExceptionMessage($exception_message);
$this
->doTransform($value);
}