fixed LF in arrival

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@104 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach 2010-08-25 09:05:37 +00:00
parent 672f13519f
commit c80b71743d
2 changed files with 12 additions and 2 deletions

View file

@ -61,4 +61,14 @@ public class OebbProviderLiveTest
final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.linkLater);
System.out.println(moreResult);
}
@Test
public void connectionWithFootway2() throws Exception
{
final QueryConnectionsResult result = provider.queryConnections(LocationType.ANY, "Wien, Krottenbachstraße 110!", null, null,
LocationType.ANY, "Wien, Meidlinger Hauptstraße 1!", new Date(), true);
System.out.println(result);
final QueryConnectionsResult moreResult = provider.queryMoreConnections(result.linkLater);
System.out.println(moreResult);
}
}