/**
  * @covers Kunstmaan\NodeBundle\Entity\NodeTranslation::setTitle
  * @covers Kunstmaan\NodeBundle\Entity\NodeTranslation::getTitle
  */
 public function testSetGetTitle()
 {
     $this->object->setTitle('A node translation title');
     $this->assertEquals('A node translation title', $this->object->getTitle());
 }