public function testSetInterviewScore()
 {
     $appStat = new ApplicationStatistic();
     $intScore = new InterviewScore();
     $appStat->setInterviewScore($intScore);
     $this->assertEquals($intScore, $appStat->getInterviewScore());
 }