@Test
 public void test3findByempId() {
   try {
     java.util.List<LeaveRequest> listofempId =
         leaverequestRepository.findByEmpId(
             (java.lang.String) map.get("EmpInformationPrimaryKey"));
     if (listofempId.size() == 0) {
       org.junit.Assert.fail("Query did not return any records.");
     }
   } catch (com.athena.framework.server.exception.repository.SpartanPersistenceException e) {
     org.junit.Assert.fail(e.getMessage());
   } catch (Exception e) {
     org.junit.Assert.fail(e.getMessage());
   }
 }