nearby stations by coordinate for Zürich

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@609 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-05-07 11:08:41 +00:00
parent bb548b6adb
commit dfb68c5e03
3 changed files with 77 additions and 9 deletions

View file

@ -55,13 +55,21 @@ public class ZvvProviderLiveTest
}
@Test
public void nearbyStation() throws Exception
public void nearbyStationsByStation() throws Exception
{
final NearbyStationsResult result = provider.nearbyStations("183400", 0, 0, 0, 0);
System.out.println(result.stations.size() + " " + result.stations);
}
@Test
public void nearbyStationsByCoordinate() throws Exception
{
final NearbyStationsResult result = provider.nearbyStations(null, 47378968, 8540534, 0, 0);
System.out.println(result.stations.size() + " " + result.stations);
}
@Test
public void queryDepartures() throws Exception
{