@Test
 public void test3FindById() {
   try {
     org.junit.Assert.assertNotNull(map.get("CommunicationGroupPrimaryKey"));
     communicationgroupRepository.findById(
         (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 test2Update() {
   try {
     org.junit.Assert.assertNotNull(map.get("CommunicationGroupPrimaryKey"));
     CommunicationGroup communicationgroup =
         communicationgroupRepository.findById(
             (java.lang.String) map.get("CommunicationGroupPrimaryKey"));
     communicationgroup.setCommGroupDescription(
         "8FLXZ3KAKL0Q5l8shPKBbYqY3PbLjkbNWU8C7K5bYeTrh4Z2A3");
     communicationgroup.setCommGroupName("VsNatqcUEN0hY6Jt45uzQZt6FFxyvOAhZi6kI149dU391GBOqG");
     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());
   }
 }