From b579253139b5a2a21c9daafa411e78b6c4a5a852 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 4 Jan 2017 02:13:15 +1300 Subject: Provide default radio type --- test/org/traccar/geolocation/GeolocationProviderTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test') diff --git a/test/org/traccar/geolocation/GeolocationProviderTest.java b/test/org/traccar/geolocation/GeolocationProviderTest.java index adfd36b96..5a701d859 100644 --- a/test/org/traccar/geolocation/GeolocationProviderTest.java +++ b/test/org/traccar/geolocation/GeolocationProviderTest.java @@ -13,16 +13,16 @@ public class GeolocationProviderTest extends BaseTest { @Test public void test() throws Exception { if (enable) { - testGoogleLocationProvider(); + testLocationProvider(); } } - public void testGoogleLocationProvider() throws Exception { - GoogleGeolocationProvider locationProvider = new GoogleGeolocationProvider("KEY"); + public void testLocationProvider() throws Exception { + MozillaGeolocationProvider provider = new MozillaGeolocationProvider(); - Network network = new Network(CellTower.from(260, 2, 10250, 26511)); + Network network = new Network(CellTower.from(208, 1, 2, 1234567)); - locationProvider.getLocation(network, new GeolocationProvider.LocationProviderCallback() { + provider.getLocation(network, new GeolocationProvider.LocationProviderCallback() { @Override public void onSuccess(double latitude, double longitude, double accuracy) { Assert.assertEquals(60.07254, latitude, 0.00001); -- cgit v1.2.3