Parse 'transfer' legs for mobile EFA.

This commit is contained in:
Andreas Schildbach 2014-06-23 21:37:26 +02:00
parent 133c8c5525
commit 82674cef74
3 changed files with 22 additions and 0 deletions

View file

@ -170,4 +170,15 @@ public class BayernProviderLiveTest extends AbstractProviderLiveTest
final QueryTripsResult laterResult = queryMoreTrips(result.context, true);
System.out.println(laterResult);
}
@Test
public void tripBetweenPOIs() throws Exception
{
final QueryTripsResult result = queryTrips(new Location(LocationType.POI, null, 47710568, 12621970, null, "Ruhpolding, Seehaus"), null,
new Location(LocationType.POI, null, 47738372, 12630996, null, "Ruhpolding, Unternberg-Bahn"), new Date(), true, Product.ALL,
WalkSpeed.NORMAL, Accessibility.NEUTRAL);
System.out.println(result);
final QueryTripsResult laterResult = queryMoreTrips(result.context, true);
System.out.println(laterResult);
}
}