public function AccessAwareRouterTest::testCall in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 118 - Contains \Drupal\Tests\Core\Routing\AccessAwareRouterTest.
Class
- AccessAwareRouterTest
- @coversDefaultClass \Drupal\Core\Routing\AccessAwareRouter @group Routing
Namespace
Drupal\Tests\Core\RoutingCode
public function testCall() {
$mock_router = $this
->getMock('Symfony\\Component\\Routing\\RouterInterface');
$this->chainRouter = $this
->getMockBuilder('Symfony\\Cmf\\Component\\Routing\\ChainRouter')
->disableOriginalConstructor()
->setMethods([
'add',
])
->getMock();
$this->chainRouter
->expects($this
->once())
->method('add')
->with($mock_router)
->willReturnSelf();
$this->router = new AccessAwareRouter($this->chainRouter, $this->accessManager, $this->currentUser);
$this->router
->add($mock_router);
}