Examples of FindCity


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

  @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());
   
    String xmlToBeSent = TestConstants.XML_HEADER + xstream.toXML(findCityResource);
   
    Response response =
      HttpClient.doPost(
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.