Package org.jsurveylib.model.question

Examples of org.jsurveylib.model.question.CheckboxQuestion


    private void checkPageNum(int expectedPageNum, Page page, Survey survey) {
        assertTrue(page == survey.getPages().get(expectedPageNum - 1));
    }

    private void checkCheckTemplate(Survey survey, String id) {
        CheckboxQuestion check = (CheckboxQuestion) survey.getQuestionByID(id);
        assertFalse(check.isCheckboxOnRight());
        assertFalse(check.getLabel().getText().contains("TEMPLATE"));
        assertFalse(check.getId().contains("TEMPLATE"));

    }
View Full Code Here

TOP

Related Classes of org.jsurveylib.model.question.CheckboxQuestion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.