assertThat(page.getTotalElements(), is(1L));
}
@Test
public void shouldFindByNameAndCountry() throws Exception {
City melbourneUsa = this.cityRepository.findByNameAndCountryAllIgnoringCase("Melbourne", "USA");
City melbourneAustralia = this.cityRepository.findByNameAndCountryAllIgnoringCase("Melbourne", "Australia");
assertThat(melbourneUsa.getName(), is("Melbourne"));
assertThat(melbourneUsa.getCountry(), is("USA"));
assertThat(melbourneAustralia.getName(), is("Melbourne"));
assertThat(melbourneAustralia.getCountry(), is("Australia"));
}