/**
  * @covers Core\Entity\SubjectRound::setStudentGroup
  * @covers Core\Entity\SubjectRound::getStudentGroup
  */
 public function testSetGetStudentGroup()
 {
     $mockStudentGroup = $this->getMockBuilder('Core\\Entity\\StudentGroup')->getMock();
     $this->subjectRound->setStudentGroup($mockStudentGroup);
     $this->assertEquals($mockStudentGroup, $this->subjectRound->getStudentGroup());
 }
 /**
  * {@inheritDoc}
  */
 public function getStudentGroup()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getStudentGroup', array());
     return parent::getStudentGroup();
 }