You are here

public function UnroutedUrlTest::testGetRouteName in Drupal 8

Same name and namespace in other branches
  1. 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\Core

Code

public function testGetRouteName($uri) {
  $url = Url::fromUri($uri);
  $this
    ->expectException(\UnexpectedValueException::class);
  $url
    ->getRouteName();
}