Switch to modern code format. Organize imports. No functional changes.

Java sources use Eclipse 4.5 'Java Conventions' with indentation changed to 4 spaces only per level.
This commit is contained in:
Andreas Schildbach 2016-09-08 17:52:19 +02:00
parent db59817a05
commit 931dafb628
191 changed files with 24827 additions and 27703 deletions

View file

@ -24,34 +24,28 @@ import de.schildbach.pte.QuebecProvider;
/**
* @author Stephane Berube
*/
public class QuebecProviderLiveTest extends AbstractNavitiaProviderLiveTest
{
public QuebecProviderLiveTest()
{
super(new QuebecProvider(secretProperty("navitia.authorization")));
}
public class QuebecProviderLiveTest extends AbstractNavitiaProviderLiveTest {
public QuebecProviderLiveTest() {
super(new QuebecProvider(secretProperty("navitia.authorization")));
}
@Test
public void nearbyStationsStation() throws Exception
{
nearbyStationsStation("stop_area:OML:SA:CTP3102842");
}
@Test
public void nearbyStationsStation() throws Exception {
nearbyStationsStation("stop_area:OML:SA:CTP3102842");
}
@Test
public void nearbyStationsInvalidStation() throws Exception
{
nearbyStationsInvalidStation("stop_area:OML:SA:CTPxxxxxxx");
}
@Test
public void nearbyStationsInvalidStation() throws Exception {
nearbyStationsInvalidStation("stop_area:OML:SA:CTPxxxxxxx");
}
@Test
public void queryDeparturesStopArea() throws Exception
{
queryDeparturesStopArea("stop_area:OML:SA:CTP3102842");
}
@Test
public void queryDeparturesStopArea() throws Exception {
queryDeparturesStopArea("stop_area:OML:SA:CTP3102842");
}
@Test
public void suggestLocations() throws Exception
{
suggestLocations("Airport");
}
@Test
public void suggestLocations() throws Exception {
suggestLocations("Airport");
}
}