You are here

public function UrlGeneratorTest::testGetPathFromRouteTrailing in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testGetPathFromRouteTrailing()

Tests URL generation from route with trailing start and end slashes.

File

core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php, line 388

Class

UrlGeneratorTest
Confirm that the UrlGenerator is functioning properly.

Namespace

Drupal\Tests\Core\Routing

Code

public function testGetPathFromRouteTrailing() {
  $this->routeProcessorManager
    ->expects($this
    ->once())
    ->method('processOutbound');
  $path = $this->generator
    ->getPathFromRoute('test_3');
  $this
    ->assertEquals($path, 'test/two');
}