/** @return */
 private City newCity() {
   City city = TestUtil.createCity();
   city.setState(TestUtil.createCountryState());
   city.getState().setCountry(TestUtil.createCountry());
   return city;
 }