Package org.growersnation.site.model.weather.temperature

Examples of org.growersnation.site.model.weather.temperature.TemperatureLocationList


  @Test
  public void testJAXB() {

    InputStream is = TemperatureLocationDaoTest.class.getResourceAsStream("/fixtures/weather/test-temperature-1.xml");
    TemperatureLocationList tll = JAXB.unmarshal(is, TemperatureLocationList.class);

    TemperatureLocation tl = tll.getLocations().get(0);

    assertEquals(-59.083,tl.getLat(),0.001);
    assertEquals(-26.583,tl.getLng(),0.001);

  }
View Full Code Here

TOP

Related Classes of org.growersnation.site.model.weather.temperature.TemperatureLocationList

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.