You are here

public function UrlHelperTest::testIsExternal in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\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 392

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public function testIsExternal($path, $expected) {
  $isExternal = UrlHelper::isExternal($path);
  $this
    ->assertEquals($expected, $isExternal);
}