Fix Netherlands, but sadly it hasn't got coordinates.

This commit is contained in:
Andreas Schildbach 2012-08-01 19:28:14 +02:00
parent b1a0b6517c
commit 06a9580602
3 changed files with 38 additions and 25 deletions

View file

@ -46,7 +46,7 @@ public class NsProviderLiveTest extends AbstractProviderLiveTest
@Test
public void nearbyStations() throws Exception
{
final NearbyStationsResult result = provider.queryNearbyStations(new Location(LocationType.STATION, "8400058"), 0, 0);
final NearbyStationsResult result = provider.queryNearbyStations(new Location(LocationType.STATION, "8800004"), 0, 0);
print(result);
}
@ -62,7 +62,7 @@ public class NsProviderLiveTest extends AbstractProviderLiveTest
@Test
public void queryDepartures() throws Exception
{
final QueryDeparturesResult result = provider.queryDepartures("8400058", 0, false);
final QueryDeparturesResult result = provider.queryDepartures("8800004", 0, false);
print(result);
}
@ -99,13 +99,4 @@ public class NsProviderLiveTest extends AbstractProviderLiveTest
print(result);
}
@Test
public void longTrip() throws Exception
{
final QueryTripsResult result = queryTrips(new Location(LocationType.STATION, "100024"), null, new Location(LocationType.STATION, "103624"),
new Date(), true, null, WalkSpeed.FAST, Accessibility.NEUTRAL);
print(result);
}
}