aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/location
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2016-05-26 09:30:43 +0500
committerAbyss777 <abyss@fox5.ru>2016-05-26 09:30:43 +0500
commitaa12e5c750e771016545269ffa39409b06b47eee (patch)
treed21b4414b532bfc53c9a905f3caa09f70b43b59e /test/org/traccar/location
parentac2405f0d57fac51fe95aa755f90fe82f26f73bc (diff)
downloadtrackermap-server-aa12e5c750e771016545269ffa39409b06b47eee.tar.gz
trackermap-server-aa12e5c750e771016545269ffa39409b06b47eee.tar.bz2
trackermap-server-aa12e5c750e771016545269ffa39409b06b47eee.zip
- Simplification of the hierarchy of models classes
- Removed automatically founded unnecessary imports
Diffstat (limited to 'test/org/traccar/location')
-rw-r--r--test/org/traccar/location/LocationProviderTest.java15
1 files changed, 5 insertions, 10 deletions
diff --git a/test/org/traccar/location/LocationProviderTest.java b/test/org/traccar/location/LocationProviderTest.java
index b7280cfea..910f9e9ea 100644
--- a/test/org/traccar/location/LocationProviderTest.java
+++ b/test/org/traccar/location/LocationProviderTest.java
@@ -2,12 +2,7 @@ package org.traccar.location;
import org.junit.Assert;
import org.junit.Test;
-import org.traccar.geocode.AddressFormat;
-import org.traccar.geocode.GisgraphyReverseGeocoder;
-import org.traccar.geocode.GoogleReverseGeocoder;
-import org.traccar.geocode.NominatimReverseGeocoder;
-import org.traccar.geocode.ReverseGeocoder;
-import org.traccar.model.Event;
+import org.traccar.model.Position;
import java.util.HashMap;
import java.util.Map;
@@ -27,10 +22,10 @@ public class LocationProviderTest {
OpenCellIdLocationProvider locationProvider = new OpenCellIdLocationProvider("fake");
Map<String, Object> attributes = new HashMap<>();
- attributes.put(Event.KEY_MCC, 260);
- attributes.put(Event.KEY_MNC, 2);
- attributes.put(Event.KEY_LAC, 10250);
- attributes.put(Event.KEY_CID, 26511);
+ attributes.put(Position.KEY_MCC, 260);
+ attributes.put(Position.KEY_MNC, 2);
+ attributes.put(Position.KEY_LAC, 10250);
+ attributes.put(Position.KEY_CID, 26511);
locationProvider.getLocation(attributes, new LocationProvider.LocationProviderCallback() {
@Override