correctAnswersExplanation = "If I have a box with one apple, and then I put another apple...";
}
public void testCreation() {
MultipleChoiceQuestion multipleChoiceQuestion = new MultipleChoiceQuestion(
topic,
question,
answerOptions,
correctAnswers, correctAnswersExplanation
);
assertEquals(multipleChoiceQuestion.getTopic(), topic);
assertEquals(multipleChoiceQuestion.getQuestion(), question);
assertEquals(multipleChoiceQuestion.getAnswerOptions(), answerOptions);
assertEquals(multipleChoiceQuestion.getCorrectAnswers(), correctAnswers);
assertEquals(multipleChoiceQuestion.getExplanation(), correctAnswersExplanation);
}