aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/geolocation/GeolocationProviderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/geolocation/GeolocationProviderTest.java')
-rw-r--r--test/org/traccar/geolocation/GeolocationProviderTest.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/org/traccar/geolocation/GeolocationProviderTest.java b/test/org/traccar/geolocation/GeolocationProviderTest.java
deleted file mode 100644
index 2729052d6..000000000
--- a/test/org/traccar/geolocation/GeolocationProviderTest.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package org.traccar.geolocation;
-
-import org.junit.Ignore;
-import org.junit.Test;
-import org.traccar.BaseTest;
-import org.traccar.model.CellTower;
-import org.traccar.model.Network;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.fail;
-
-public class GeolocationProviderTest extends BaseTest {
-
- @Ignore
- @Test
- public void test() throws Exception {
- testLocationProvider();
- }
-
- public void testLocationProvider() throws Exception {
- MozillaGeolocationProvider provider = new MozillaGeolocationProvider(null);
-
- Network network = new Network(CellTower.from(208, 1, 2, 1234567));
-
- provider.getLocation(network, new GeolocationProvider.LocationProviderCallback() {
- @Override
- public void onSuccess(double latitude, double longitude, double accuracy) {
- assertEquals(60.07254, latitude, 0.00001);
- assertEquals(30.30996, longitude, 0.00001);
- }
-
- @Override
- public void onFailure(Throwable e) {
- fail();
- }
- });
-
- Thread.sleep(Long.MAX_VALUE);
- }
-
-}