Initial commit

This commit is contained in:
2016-12-24 16:52:29 +01:00
commit f12e359e2a
4 changed files with 217 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package de.stklcode.pubtrans.ura;
import org.junit.Test;
/**
* Created by stefan on 24.12.16.
*/
public class UraClientTest {
private static final String BASE_ASEAG = "http://ivu.aseag.de";
@Test
public void listStopsTest() {
new UraClient(BASE_ASEAG).listStops();
}
}