*/
@Ignore
@Test
@Deprecated
public void testQuestionSection(){
final QuestionSection qSection = new QuestionSection();
final SurveySection section = createSurveySection("Personal Information");
qSection.setQuestion(this.initQuestion);
//qSection.setQuestionSectionId(1L);
qSection.setSurveySection(section);
getSurveyDaoImp().saveOrUpdate(qSection);
assertNotNull(qSection.getQuestion());
assertNotNull(qSection.getQuestionSectionId());
assertNotNull(qSection.getSurveySection());
}