readFile(new File(SAMPLE_PATH, "tripmastr-with-3-routes-3.kml"), 3, true, false, Track, Waypoints, Route);
}
@Test
public void testTripmaster1dot4GpxTrack() throws Exception {
List<GpxRoute> routes = readGpxFile(new Gpx10Format(), SAMPLE_PATH + "tripmaster1.gpx");
assertNotNull(routes);
assertEquals(1, routes.size());
GpxRoute route = routes.get(0);
assertEquals(Track, route.getCharacteristics());
assertEquals(881, route.getPositionCount());