Ejemplo n.º 1
0
 /**
  * @covers Core\Entity\IndependentWork::SubjectRound
  * @covers Core\Entity\IndependentWork::SubjectRound
  */
 public function testSetGetSubjectRound()
 {
     $sr = $this->getMockBuilder('Core\\Entity\\SubjectRound')->getMock();
     $this->independentwork->setSubjectRound($sr);
     $this->assertEquals($this->independentwork->getSubjectRound(), $sr);
 }
 /**
  * {@inheritDoc}
  */
 public function setSubjectRound($subjectRound)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubjectRound', array($subjectRound));
     return parent::setSubjectRound($subjectRound);
 }