public function CurrentRouteMatchTest::testGetRouteMatchFromRequestWithRouting in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Routing/CurrentRouteMatchTest.php \Drupal\Tests\Core\Routing\CurrentRouteMatchTest::testGetRouteMatchFromRequestWithRouting()
@covers ::getRouteMatchFromRequest
File
- core/
tests/ Drupal/ Tests/ Core/ Routing/ CurrentRouteMatchTest.php, line 82 - Contains \Drupal\Tests\Core\Routing\CurrentRouteMatchTest.
Class
- CurrentRouteMatchTest
- @coversDefaultClass \Drupal\Core\Routing\CurrentRouteMatch @group Routing
Namespace
Drupal\Tests\Core\RoutingCode
public function testGetRouteMatchFromRequestWithRouting() {
$request_stack = new RequestStack();
$request = new Request();
$request_stack
->push($request);
$current_route_match = new CurrentRouteMatch($request_stack);
$route_match = $current_route_match
->getRouteMatchFromRequest($request);
$this
->assertNull($route_match
->getRouteName());
$this
->assertNull($route_match
->getRouteObject());
}