Package upperbound.learningtools.funes

Examples of upperbound.learningtools.funes.SimpleMultipleChoiceExamRules


  }

  private MultipleChoiceExam createMultipleChoiceExam() {
    MultipleChoiceExam exam = new MultipleChoiceExam(
        "Test exam",
        new SimpleMultipleChoiceExamRules(),
        createMultipleChoiceExamQuestions());
    return exam;
  }
View Full Code Here


  private List<MultipleChoiceQuestion> questions;
  private MultipleChoiceExamRules rules;

  @Override
  protected void setUp() throws Exception {
    rules = new SimpleMultipleChoiceExamRules();
    questions = new ArrayList<MultipleChoiceQuestion>();
  }
View Full Code Here

  public MultipleChoiceExamDOMBasedBuilder(Document document) {
    this.document = document;
  }

  public MultipleChoiceExam buildExam() {
    return new MultipleChoiceExam(getExamTitle(), new SimpleMultipleChoiceExamRules(), getQuestions());
  }
View Full Code Here

TOP

Related Classes of upperbound.learningtools.funes.SimpleMultipleChoiceExamRules

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.