@Test
public void testMarshallingLeg() throws Exception{
long day = 24 * 60 * 60 * 1000;
Leg leg = new Leg(new DateTime(day, ISOChronology.getInstanceUTC()), new DateTime(day * 2, ISOChronology.getInstanceUTC()),
new Location("UK", "London"), new Location("US", "New York"));
StringWriter writer = new StringWriter();
StreamResult res = new StreamResult(writer);
marshaller.marshal(leg, res);