use of org.mifos.test.acceptance.framework.questionnaire.CreateQuestionParameters in project head by mifos.
the class QuestionTest method setUp.
@Override
@SuppressWarnings("PMD.SignatureDeclareThrowsException")
@BeforeMethod
public void setUp() throws Exception {
super.setUp();
appLauncher = new AppLauncher(selenium);
title = "Title " + System.currentTimeMillis();
types = Arrays.asList(FREE_TEXT, DATE, NUMBER, SINGLE_SELECT, MULTI_SELECT, "Smart Select");
createQuestionParameters = new CreateQuestionParameters();
adminPage = getAdminPage();
}
Aggregations