@Test
 public void testFindReportByMonthWithApplicantRepositoryShouldReturnListOfReportApplicant()
     throws Exception {
   List<ReportApplicantDto> result = applicantRepository.findReportByMonth(startDate, endDate);
   assertNotNull(result);
   assertThat(result.size(), is(new GreaterOrEqual<>(1)));
 }