You are here

public function UrlHelperTest::testExternalIsLocalInvalid in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::testExternalIsLocalInvalid()

Tests invalid url arguments.

@covers ::externalIsLocal @dataProvider providerTestExternalIsLocalInvalid

Parameters

string $url: The url to test.

string $base_url: The base url.

File

core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php, line 620

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public function testExternalIsLocalInvalid($url, $base_url) {
  $this
    ->expectException(\InvalidArgumentException::class);
  UrlHelper::externalIsLocal($url, $base_url);
}