/**
  * @covers Core\Entity\IndependentWork::Description
  * @covers Core\Entity\IndependentWork::Description
  */
 public function testSetGetDescription()
 {
     $desc = "Description";
     $this->independentwork->setDescription($desc);
     $this->assertEquals($desc, $this->independentwork->getDescription());
 }
 /**
  * {@inheritDoc}
  */
 public function setDescription($description)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', array($description));
     return parent::setDescription($description);
 }