You are here

public function UnroutedUrlTest::testGetInternalPath in Drupal 9

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

Tests the getInternalPath() method.

@depends testFromUri @dataProvider providerFromUri

@covers ::getInternalPath

File

core/tests/Drupal/Tests/Core/UnroutedUrlTest.php, line 209

Class

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

Namespace

Drupal\Tests\Core

Code

public function testGetInternalPath($uri) {
  $url = Url::fromUri($uri);
  $this
    ->expectException(\Exception::class);
  $url
    ->getInternalPath();
}