shared code for printing nearby stations results

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@908 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2012-01-28 12:53:01 +00:00
parent d739a14199
commit a78462f453
66 changed files with 134 additions and 128 deletions

View file

@ -44,7 +44,7 @@ public class KvvProviderLiveTest extends AbstractProviderLiveTest
{
final NearbyStationsResult result = provider.queryNearbyStations(new Location(LocationType.STATION, 7000090), 0, 0);
System.out.println(result.stations.size() + " " + result.stations);
print(result);
}
@Test
@ -52,7 +52,7 @@ public class KvvProviderLiveTest extends AbstractProviderLiveTest
{
final NearbyStationsResult result = provider.queryNearbyStations(new Location(LocationType.ADDRESS, 49008184, 8400736), 0, 0);
System.out.println(result.stations.size() + " " + result.stations);
print(result);
}
@Test