function UrlHelperTest::testValidRelative

Tests valid relative URLs.

@legacy-covers ::isValid

Attributes

#[DataProvider('providerTestValidRelativeData')]

Parameters

string $url: The URL to test.

string $prefix: The prefix to test.

File

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

Class

UrlHelperTest
Tests Drupal\Component\Utility\UrlHelper.

Namespace

Drupal\Tests\Component\Utility

Code

public function testValidRelative(string $url, string $prefix) : void {
  $test_url = $prefix . $url;
  $valid_url = UrlHelper::isValid($test_url);
  $this->assertTrue($valid_url, $test_url . ' is a valid URL.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.