public function UnroutedUrlTest::testGetRouteName in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testGetRouteName()
- 9 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testGetRouteName()
Tests the getRouteName() method.
@depends testFromUri @dataProvider providerFromUri
@covers ::getRouteName
File
- core/
tests/ Drupal/ Tests/ Core/ UnroutedUrlTest.php, line 181
Class
- UnroutedUrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testGetRouteName($uri) {
$url = Url::fromUri($uri);
$this
->expectException(\UnexpectedValueException::class);
$url
->getRouteName();
}