You are here

public function UrlValidatorTest::testRelativeToRoot in Mini site 8

Tests for relativeToRoot.

@dataProvider dataProviderRelativeToRoot @covers \Drupal\minisite\UrlValidator::relativeToRoot

File

tests/src/Kernel/UrlValidatorTest.php, line 196

Class

UrlValidatorTest
Class UrlValidatorTest.

Namespace

Drupal\Tests\minisite\Kernel

Code

public function testRelativeToRoot($url, $prefix, $expected) {
  $actual = UrlValidator::relativeToRoot($url, $prefix);
  $this
    ->assertEquals($expected, $actual);
}