function RouterUnsupportedTest::testGenerateUnsupported

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Routing/RouterUnsupportedTest.php \Drupal\Tests\Core\Routing\RouterUnsupportedTest::testGenerateUnsupported()

@covers ::generate

File

core/tests/Drupal/Tests/Core/Routing/RouterUnsupportedTest.php, line 26

Class

RouterUnsupportedTest
@coversDefaultClass \Drupal\Core\Routing\Router[[api-linebreak]] @group Routing @group legacy

Namespace

Drupal\Tests\Core\Routing

Code

public function testGenerateUnsupported() : void {
  $this->expectException(\BadMethodCallException::class);
  $route_provider = $this->prophesize(RouteProviderInterface::class);
  $current_path_stack = $this->prophesize(CurrentPathStack::class);
  $url_generator = $this->prophesize(UrlGeneratorInterface::class);
  $route_name = 'test.route';
  $route_path = '/test';
  $url_generator->generate($route_name, Argument::any(), Argument::any())
    ->willReturn($route_path);
  $router = new Router($route_provider->reveal(), $current_path_stack->reveal(), $url_generator->reveal());
  $router->generate($route_name);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.