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