You are here

public function UnroutedUrlTest::testGetRouteName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testGetRouteName()

Tests the getRouteName() method.

@depends testFromUri @dataProvider providerFromUri

@expectedException \UnexpectedValueException

@covers ::getRouteName

File

core/tests/Drupal/Tests/Core/UnroutedUrlTest.php, line 190
Contains \Drupal\Tests\Core\UnroutedUrlTest.

Class

UnroutedUrlTest
@coversDefaultClass \Drupal\Core\Url @group UrlTest

Namespace

Drupal\Tests\Core

Code

public function testGetRouteName($uri) {
  $url = Url::fromUri($uri);
  $url
    ->getRouteName();
}