We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b7780 commit f5c7e60Copy full SHA for f5c7e60
1 file changed
src/test/java/com/lbry/globe/tests/GeoIPTest.java
@@ -10,6 +10,7 @@ public class GeoIPTest{
10
11
@Test
12
public void testGetCoordinateFromLocation(){
13
+ assertArrayEquals(new Double[]{null,null},GeoIP.getCoordinateFromLocation(null));
14
assertArrayEquals(new Double[]{123.0,456.0},GeoIP.getCoordinateFromLocation("123,456"));
15
assertArrayEquals(new Double[]{123.125,456.125},GeoIP.getCoordinateFromLocation("123.125,456.125"));
16
assertArrayEquals(new Double[]{123.25,456.25},GeoIP.getCoordinateFromLocation("123.25,456.25"));
0 commit comments