diff options
Diffstat (limited to 'test/org/traccar/geolocation')
-rw-r--r-- | test/org/traccar/geolocation/GeolocationProviderTest.java | 10 |
1 files changed, 5 insertions, 5 deletions
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); |