Added location test

This commit is contained in:
crimean 2018-10-03 18:53:50 +03:00
parent ab1fc95168
commit f9ca4ad545

View file

@ -54,6 +54,7 @@ public class LocationSearchTest {
search("5:1#1 3#1", new LatLon(5 + 1/60f + 1/3600f, 3 + 1/60f));
search("5#1#1 3#1", new LatLon(5 + 1/60f + 1/3600f, 3 + 1/60f));
search("5'1'1 3'1", new LatLon(5 + 1/60f + 1/3600f, 3 + 1/60f));
search("Lat: 5.0 Lon: 3.0", new LatLon(5, 3));
}
@Test