aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/location/LocationProviderTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/org/traccar/location/LocationProviderTest.java')
-rw-r--r--test/org/traccar/location/LocationProviderTest.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/org/traccar/location/LocationProviderTest.java b/test/org/traccar/location/LocationProviderTest.java
deleted file mode 100644
index c4357e1d6..000000000
--- a/test/org/traccar/location/LocationProviderTest.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package org.traccar.location;
-
-import org.junit.Assert;
-import org.junit.Test;
-import org.traccar.BaseTest;
-import org.traccar.model.CellTower;
-import org.traccar.model.Network;
-
-public class LocationProviderTest extends BaseTest {
-
- private boolean enable = false;
-
- @Test
- public void test() throws Exception {
- if (enable) {
- testGoogleLocationProvider();
- }
- }
-
- public void testGoogleLocationProvider() throws Exception {
- GoogleLocationProvider locationProvider = new GoogleLocationProvider("KEY");
-
- Network network = new Network(CellTower.from(260, 2, 10250, 26511));
-
- locationProvider.getLocation(network, new LocationProvider.LocationProviderCallback() {
- @Override
- public void onSuccess(double latitude, double longitude, double accuracy) {
- Assert.assertEquals(60.07254, latitude, 0.00001);
- Assert.assertEquals(30.30996, longitude, 0.00001);
- }
-
- @Override
- public void onFailure(Throwable e) {
- Assert.fail();
- }
- });
-
- Thread.sleep(Long.MAX_VALUE);
- }
-
-}