@Test
 public void test2Update() {
   try {
     org.junit.Assert.assertNotNull(map.get("CommunicationGroupPrimaryKey"));
     CommunicationGroup communicationgroup =
         communicationgroupRepository.findById(
             (java.lang.String) map.get("CommunicationGroupPrimaryKey"));
     communicationgroup.setCommGroupDescription(
         "TPd08jDeIHZyKAGZzsxzFNslbaB0fxNuVbaVJSrJQJFVn9gNRD");
     communicationgroup.setCommGroupName("DxZuyQOgZZA8DtosJIID7qwWv4mpuy42T7bza1tJFHnSEHfiVj");
     communicationgroup.setVersionId(1);
     communicationgroup.setEntityAudit(1, "xyz", RECORD_TYPE.UPDATE);
     communicationgroupRepository.update(communicationgroup);
   } catch (com.athena.framework.server.exception.repository.SpartanPersistenceException e) {
     org.junit.Assert.fail(e.getMessage());
   } catch (java.lang.Exception e) {
     e.printStackTrace();
   }
 }
 @Test
 public void test4Delete() {
   try {
     org.junit.Assert.assertNotNull(map.get("CommunicationGroupPrimaryKey"));
     communicationgroupRepository.delete(
         (java.lang.String) map.get("CommunicationGroupPrimaryKey"));
   } catch (com.athena.framework.server.exception.repository.SpartanPersistenceException e) {
     org.junit.Assert.fail(e.getMessage());
   } catch (Exception e) {
     e.printStackTrace();
   }
 }
 @Test
 public void test1Save() {
   try {
     CommunicationGroup communicationgroup = new CommunicationGroup();
     communicationgroup.setCommGroupDescription(
         "373DuHEiNGcOCKVQnwiSDc8n9h9NJlBx4NlWtfN7ES4z890Z7Q");
     communicationgroup.setCommGroupName("1BOsYLHQH4Et4tVi3HLUH4ZW5TIQAwkIQAxbG3A0ovO1NZ6gRe");
     communicationgroup.setEntityAudit(1, "xyz", RECORD_TYPE.ADD);
     communicationgroup.setEntityValidator(entityValidator);
     communicationgroup.isValid();
     communicationgroupRepository.save(communicationgroup);
     map.put("CommunicationGroupPrimaryKey", communicationgroup._getPrimarykey());
   } catch (com.athena.framework.server.exception.biz.SpartanConstraintViolationException e) {
     org.junit.Assert.fail(e.getMessage());
   } catch (java.lang.Exception e) {
     e.printStackTrace();
   }
 }