public function UnroutedUrlTest::testGetInternalPath in Drupal 9
Same name and namespace in other branches
- 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\CoreCode
public function testGetInternalPath($uri) {
$url = Url::fromUri($uri);
$this
->expectException(\Exception::class);
$url
->getInternalPath();
}