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