Package com.lbslocal.api.objects.external

Examples of com.lbslocal.api.objects.external.City


  }

  @Test
  public void shouldFindACity() throws Exception, InterruptedException {
   
    City city = createACity();
   
    FindCity findCityResource = new FindCity();
    findCityResource.setCity(city);
    findCityResource.setOptions(this.options);
    findCityResource.setToken(TestConstants.getToken());
View Full Code Here


    Address address = createAnAddress(createACity());
    return address;
  }

  private City createACity() {
    City city = new City();
    city.setName("Sao Paulo");
    city.setState("SP");
    return city;
  }
View Full Code Here

TOP

Related Classes of com.lbslocal.api.objects.external.City

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.