public function testGenerateFromRoute() {
$this->provider
->expects($this
->never())
->method('getRouteByName');
$this->routeDocument
->expects($this
->once())
->method('compile')
->will($this
->returnValue($this->routeCompiled));
$this
->assertEquals('result_url', $this->generator
->generate($this->routeDocument));
}