public function UnroutedUrlTest::testGetInternalPath in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testGetInternalPath()
Tests the getInternalPath() method.
@depends testFromUri @dataProvider providerFromUri
@covers ::getInternalPath
@expectedException \Exception
File
- core/
tests/ Drupal/ Tests/ Core/ UnroutedUrlTest.php, line 220 - Contains \Drupal\Tests\Core\UnroutedUrlTest.
Class
- UnroutedUrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testGetInternalPath($uri) {
$url = Url::fromUri($uri);
$this
->assertNull($url
->getInternalPath());
}