/**
  * @covers Core\Entity\SubjectRound::setIndependentWork
  * @covers Core\Entity\SubjectRound::getIndependentWork
  */
 public function testSetGetIndependentWork()
 {
     $mockIndependentWork = $this->getMockBuilder('Core\\Entity\\IndependentWork')->getMock();
     $this->subjectRound->setIndependentWork($mockIndependentWork);
     $this->assertEquals($mockIndependentWork, $this->subjectRound->getIndependentWork());
 }
 /**
  * {@inheritDoc}
  */
 public function getIndependentWork()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIndependentWork', array());
     return parent::getIndependentWork();
 }