/**
  * {@inheritDoc}
  */
 public function getSubjectRound()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubjectRound', array());
     return parent::getSubjectRound();
 }
 /**
  * @covers Core\Entity\StudentGroup::setSubjectRound
  * @covers Core\Entity\StudentGroup::getSubjectRound
  */
 public function testSetGetSubjectRound()
 {
     $mockSubjectRound = $this->getMockBuilder('Core\\Entity\\SubjectRound')->getMock();
     $this->studentGroup->setSubjectRound($mockSubjectRound);
     $this->assertEquals($mockSubjectRound, $this->studentGroup->getSubjectRound());
 }