public function UrlGeneratorTest::testGetPathFromRouteWithSubdirectory in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php \Drupal\Tests\Core\Routing\UrlGeneratorTest::testGetPathFromRouteWithSubdirectory()
Tests URL generation in a subdirectory.
File
- core/
tests/ Drupal/ Tests/ Core/ Routing/ UrlGeneratorTest.php, line 295
Class
- UrlGeneratorTest
- Confirm that the UrlGenerator is functioning properly.
Namespace
Drupal\Tests\Core\RoutingCode
public function testGetPathFromRouteWithSubdirectory() {
$this->routeProcessorManager
->expects($this
->once())
->method('processOutbound');
$path = $this->generator
->getPathFromRoute('test_1');
$this
->assertEquals('test/one', $path);
}