class RouterLegacyTest
@coversDefaultClass \Drupal\Core\Routing\Router
@group Routing
@group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Routing\RouterLegacyTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of RouterLegacyTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Routing/ RouterLegacyTest.php, line 17
Namespace
Drupal\Tests\Core\RoutingView source
class RouterLegacyTest extends UnitTestCase {
/**
* @covers ::generate
*/
public function testGenerateDeprecated() {
$this->expectDeprecation('Drupal\\Core\\Routing\\Router::generate() is deprecated in drupal:8.3.0 and will throw an exception from drupal:10.0.0. Use the \\Drupal\\Core\\Url object instead. See https://www.drupal.org/node/2820197');
$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());
$this->assertEquals($route_path, $router->generate($route_name));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.