Package org.encuestame.persistence.domain.survey

Examples of org.encuestame.persistence.domain.survey.SurveyTemporalResult


    /**
     * Test {@link SurveyTemporalResult} domain.
     */
  @Test
    public void testSurveyTemporalResult() {
        final SurveyTemporalResult result = new SurveyTemporalResult();
        final QuestionAnswer qAnswers = createQuestionAnswer("Yes",
                this.initQuestion, "ORFQT31");
        result.setAnswer(qAnswers);
        result.setQuestion(this.initQuestion);
        result.setSurvey(this.initSurvey);
        result.setTxtResponse("3 Cups");
      //  result.setIdTempResult(1L);
        result.setHash("Jks193'5");
        getSurveyDaoImp().saveOrUpdate(result);
    assertNotNull(result.getAnswer());
    assertNotNull(result.getSurvey());
    assertNotNull(result.getTxtResponse());
    assertNotNull(result.getHash());
    }
View Full Code Here

TOP

Related Classes of org.encuestame.persistence.domain.survey.SurveyTemporalResult

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.