function RouterTest::testDynamicRoutes
Same name in other branches
- 9 core/modules/system/tests/src/Functional/Routing/RouterTest.php \Drupal\Tests\system\Functional\Routing\RouterTest::testDynamicRoutes()
- 10 core/modules/system/tests/src/Functional/Routing/RouterTest.php \Drupal\Tests\system\Functional\Routing\RouterTest::testDynamicRoutes()
- 11.x core/modules/system/tests/src/Functional/Routing/RouterTest.php \Drupal\Tests\system\Functional\Routing\RouterTest::testDynamicRoutes()
Checks that dynamically defined and altered routes work correctly.
See also
\Drupal\router_test\RouteSubscriber
File
-
core/
modules/ system/ tests/ src/ Functional/ Routing/ RouterTest.php, line 200
Class
- RouterTest
- Functional class for the full integrated routing system.
Namespace
Drupal\Tests\system\Functional\RoutingCode
public function testDynamicRoutes() {
// Test the altered route.
$this->drupalGet('router_test/test6');
$this->assertSession()
->statusCodeEquals(200);
$this->assertRaw('test5', 'The correct string was returned because the route was successful.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.