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