You are here

public function UrlHelperTest::testEncodePath 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::testEncodePath()

Tests path encoding.

@dataProvider providerTestEncodePath @covers ::encodePath

Parameters

string $path: A path to encode.

string $expected: The expected encoded path.

File

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

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public function testEncodePath($path, $expected) {
  $encoded = UrlHelper::encodePath($path);
  $this
    ->assertEquals($expected, $encoded);
}