Пример #1
0
 @Test
 public void testGetQuestionType() {
   assertEquals(qb.getQuestionType(), QuestionType.calculated);
 }
Пример #2
0
 @Test
 public void testSetQuestionType() {
   qb.setQuestionType(QuestionType.matching);
   assertEquals(qb.getQuestionType(), QuestionType.matching);
 }