public function testNoContent() {
$this->document
->expects($this
->once())
->method('getRouteContent')
->will($this
->returnValue(null));
$defaults = array(
RouteObjectInterface::ROUTE_OBJECT => $this->document,
);
$this
->assertEquals($defaults, $this->mapper
->enhance($defaults, $this->request));
}