function UrlHelperTest::testIsExternal
Tests external versus internal paths.
@dataProvider providerTestIsExternal
@covers ::isExternal
Parameters
string $path: URL or path to test.
bool $expected: Expected result.
File
-
core/
tests/ Drupal/ Tests/ Component/ Utility/ UrlHelperTest.php, line 393
Class
- UrlHelperTest
- @group Utility
Namespace
Drupal\Tests\Component\UtilityCode
public function testIsExternal($path, $expected) {
$isExternal = UrlHelper::isExternal($path);
$this->assertEquals($expected, $isExternal);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.