Example #1
0
 /** @test */
 public function itShouldGetUrlGenerator()
 {
     $router = new Router($this->mockRoutes(), null, null, null, $url = $this->mockUrl());
     $url->expects($this->once())->method('generate')->with('foo', [], null, Url::RELATIVE_PATH);
     $router->getUrl('foo');
 }