@Test
 public void test2Update() {
   try {
     org.junit.Assert.assertNotNull(map.get("SurveyQuestionGroupPrimaryKey"));
     SurveyQuestionGroup surveyquestiongroup =
         surveyquestiongroupRepository.findById(
             (java.lang.Integer) map.get("SurveyQuestionGroupPrimaryKey"));
     surveyquestiongroup.setSurveyQuestionGroupDesc(
         "x8P5OYcHtJc4MnuLnmleLSz8H2HGZNdJI2v2jz8AiGOr6DHQKu");
     surveyquestiongroup.setSurveyQuestionGroupName(
         "gbWptYMuB0NepGd1TEdiRrmFCYHVEuyhEFdjYvYAL3x9lNjcJg");
     surveyquestiongroup.setVersionId(1);
     surveyquestiongroup.setEntityAudit(1, "xyz", RECORD_TYPE.UPDATE);
     surveyquestiongroupRepository.update(surveyquestiongroup);
   } catch (com.athena.framework.server.exception.repository.SpartanPersistenceException e) {
     org.junit.Assert.fail(e.getMessage());
   } catch (java.lang.Exception e) {
     org.junit.Assert.fail(e.getMessage());
   }
 }