public function UnroutedUrlTest::testFromUri in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/UnroutedUrlTest.php \Drupal\Tests\Core\UnroutedUrlTest::testFromUri()
Tests the fromUri() method.
@covers ::fromUri
@dataProvider providerFromUri
File
- core/
tests/ Drupal/ Tests/ Core/ UnroutedUrlTest.php, line 70
Class
- UnroutedUrlTest
- @coversDefaultClass \Drupal\Core\Url @group UrlTest
Namespace
Drupal\Tests\CoreCode
public function testFromUri($uri, $is_external) {
$url = Url::fromUri($uri);
$this
->assertInstanceOf('Drupal\\Core\\Url', $url);
}