/**
  * @expectedException LogicException
  */
 public function testSetContent()
 {
     $content = $this->getMock('Symfony\\Cmf\\Component\\Routing\\RouteAwareInterface');
     $redirect = new RedirectRoute();
     $redirect->setRouteContent($content);
 }