/**
  * @covers Kunstmaan\NodeBundle\Entity\NodeVersion::setNodeTranslation
  * @covers Kunstmaan\NodeBundle\Entity\NodeVersion::getNodeTranslation
  */
 public function testSetGetNodeTranslation()
 {
     $nodeTrans = new NodeTranslation();
     $this->object->setNodeTranslation($nodeTrans);
     $this->assertEquals($nodeTrans, $this->object->getNodeTranslation());
 }