@Test
 public void test2Update() {
   try {
     org.junit.Assert.assertNotNull(map.get("CommunicationGroupPrimaryKey"));
     CommunicationGroup communicationgroup =
         communicationgroupRepository.findById(
             (java.lang.String) map.get("CommunicationGroupPrimaryKey"));
     communicationgroup.setCommGroupDescription(
         "MJAx1OpIFotcdkTUtvuARXgX4s8qJsyoanAga01P8xw0MXHd9r");
     communicationgroup.setCommGroupName("xQmkJ54YXmKbj2Fc0DtcyHCcYxj8aPubrKqoW0VN5blBfMIuHZ");
     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) {
     org.junit.Assert.fail(e.getMessage());
   }
 }
 @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) {
     org.junit.Assert.fail(e.getMessage());
   }
 }
 @Test
 public void test1Save() {
   try {
     CommunicationGroup communicationgroup = new CommunicationGroup();
     communicationgroup.setCommGroupDescription(
         "ZkH2cJTLgVlgeXzBPuMLJDDjeRX5XbbMsceMpXwdgaX2iNmE7K");
     communicationgroup.setCommGroupName("gr7XupPhNgaCi6TrfyW076hhrJSuQzolAUERglMQM8vf814BoW");
     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) {
     org.junit.Assert.fail(e.getMessage());
   }
 }