Index: /trunk/test/unit/org/openstreetmap/josm/tools/GeoPropertyIndexTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/GeoPropertyIndexTest.java	(revision 17442)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/GeoPropertyIndexTest.java	(revision 17442)
@@ -0,0 +1,25 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.tools;
+
+import static org.junit.jupiter.api.Assertions.assertFalse;
+
+import java.util.Collections;
+
+import org.junit.jupiter.api.Test;
+import org.openstreetmap.josm.data.coor.LatLon;
+import org.openstreetmap.josm.data.osm.BBox;
+import org.openstreetmap.josm.tools.GeoPropertyIndex.GPLevel;
+
+/**
+ * Unit tests of {@link GeoPropertyIndex} class.
+ */
+class GeoPropertyIndexTest {
+
+    @Test
+    void testIsInside() {
+        assertFalse(new GPLevel<>(0,
+                new BBox(119.53125, 30.234375, 120.9375, 30.9375), null,
+                new GeoPropertyIndex<>(new DefaultGeoProperty(Collections.emptyList()), 24))
+            .isInside(new LatLon(30.580878544754302, 119.53124999999997)));
+    }
+}
Index: /trunk/test/unit/org/openstreetmap/josm/tools/GeoUrlToBoundsTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/tools/GeoUrlToBoundsTest.java	(revision 17441)
+++ /trunk/test/unit/org/openstreetmap/josm/tools/GeoUrlToBoundsTest.java	(revision 17442)
@@ -10,5 +10,5 @@
 
 /**
- * Unit tests of {@link GeoUrlToBoundsTest} class.
+ * Unit tests of {@link GeoUrlToBounds} class.
  */
 class GeoUrlToBoundsTest {
