public function testFieldAlreadyThere() {
$this->document
->expects($this
->never())
->method('getRouteContent');
$defaults = array(
RouteObjectInterface::ROUTE_OBJECT => $this->document,
'_content' => 'foo',
);
$this
->assertEquals($defaults, $this->mapper
->enhance($defaults, $this->request));
}