@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);
}