private boolean enChanged = false;
private boolean valChanged = false;
@Test
public void standard() throws Exception {
Survey m = new Survey(new XMLSurveyReader(new File("src\\test\\org\\jsurveylib\\model\\question\\typemultichoicefiles\\standard.xml")));
m.getQuestionByID("multi").addAnswerListener(this);
RadioButtonsQuestion multi = (RadioButtonsQuestion) m.getQuestionByID("multi");
Choice c1 = multi.getChoices().get(0);
assertEquals("X", c1.getId());
assertEquals("x", c1.getLabel());
Choice c2 = multi.getChoices().get(1);