public function AccessAwareRouterTest::testCall in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Routing/AccessAwareRouterTest.php \Drupal\Tests\Core\Routing\AccessAwareRouterTest::testCall()
Ensure that methods are passed to the wrapped router.
@covers ::__call
File
- core/
tests/ Drupal/ Tests/ Core/ Routing/ AccessAwareRouterTest.php, line 125
Class
- AccessAwareRouterTest
- @coversDefaultClass \Drupal\Core\Routing\AccessAwareRouter @group Routing
Namespace
Drupal\Tests\Core\RoutingCode
public function testCall() {
$mock_router = $this
->createMock('Symfony\\Component\\Routing\\RouterInterface');
$this->router = $this
->getMockBuilder('Drupal\\Core\\Routing\\Router')
->disableOriginalConstructor()
->setMethods([
'add',
])
->getMock();
$this->router
->expects($this
->once())
->method('add')
->with($mock_router)
->willReturnSelf();
$this->accessAwareRouter = new AccessAwareRouter($this->router, $this->accessManager, $this->currentUser);
$this->accessAwareRouter
->add($mock_router);
}