getContext() public méthode

public getContext ( )
Exemple #1
0
 public function testContextAccessor()
 {
     $context = new RequestContext();
     $mockedRouter = $this->prophesize('Symfony\\Component\\Routing\\RouterInterface');
     $mockedRouter->setContext($context)->shouldBeCalled();
     $mockedRouter->getContext()->willReturn($context)->shouldBeCalled();
     $router = new Router($mockedRouter->reveal());
     $router->setContext($context);
     $this->assertSame($context, $router->getContext());
 }