@expectedException Symfony\Component\Routing\Exception\RouteNotFoundException
public function testGenerateNoRoutes() {
$this->contentDocument
->expects($this
->once())
->method('getRoutes')
->will($this
->returnValue(array()));
$this->generator
->generate($this->contentDocument);
}