public function testSetInterviewQuestion()
 {
     $alternative = new InterviewQuestionAlternative();
     $intQuestion = new InterviewQuestion();
     $alternative->setInterviewQuestion($intQuestion);
     $this->assertEquals($intQuestion, $alternative->getInterviewQuestion());
 }