/**
  * @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 getDescription()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', array());
     return parent::getDescription();
 }