function RouteCompilerTest::testCompilation
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Routing/RouteCompilerTest.php \Drupal\Tests\Core\Routing\RouteCompilerTest::testCompilation()
- 10 core/tests/Drupal/Tests/Core/Routing/RouteCompilerTest.php \Drupal\Tests\Core\Routing\RouteCompilerTest::testCompilation()
- 11.x core/tests/Drupal/Tests/Core/Routing/RouteCompilerTest.php \Drupal\Tests\Core\Routing\RouteCompilerTest::testCompilation()
Confirms that a route compiles properly with the necessary data.
File
-
core/
tests/ Drupal/ Tests/ Core/ Routing/ RouteCompilerTest.php, line 55
Class
- RouteCompilerTest
- @coversDefaultClass \Drupal\Core\Routing\RouteCompiler @group Routing
Namespace
Drupal\Tests\Core\RoutingCode
public function testCompilation() {
$route = new Route('/test/{something}/more');
$route->setOption('compiler_class', RouteCompiler::class);
$compiled = $route->compile();
$this->assertEquals($compiled->getFit(), 5, 'The fit was incorrect.');
$this->assertEquals($compiled->getPatternOutline(), '/test/%/more', 'The pattern outline was not correct.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.