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