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