Example #1
0
 public void testTwoTcxs() throws Exception {
   final GeoFile geoFile = getGeoFile("/TwoTcxTracks.zip");
   Assert.assertEquals(2, geoFile.getTracks().size());
 }
Example #2
0
 public void testZipInAZip() throws Exception {
   final GeoFile geoFile = getGeoFile("/ZipInsideAnotherZip.zip");
   Assert.assertEquals(3, geoFile.getTracks().size());
 }
Example #3
0
 public void testOneGpxOneTcx() throws Exception {
   final GeoFile geoFile = getGeoFile("/GpxTrackAndTcxTrack.zip");
   Assert.assertEquals(2, geoFile.getTracks().size());
 }