Commit 8ae8f2a5 authored by Matthias Betz's avatar Matthias Betz
Browse files

fix edge test

parent b9af569e
Pipeline #12292 passed with stage
in 2 minutes and 10 seconds
...@@ -249,11 +249,9 @@ public class GeometryTest { ...@@ -249,11 +249,9 @@ public class GeometryTest {
} }
@Test @Test
public void testUpdateEdges() { public void testEdges() {
Geometry geom = GeometryTestUtils.createDummyGeometryWithInnerRingWithNeighboringPolygon(GeometryType.SOLID, Geometry geom = GeometryTestUtils.createDummyGeometryWithInnerRingWithNeighboringPolygon(GeometryType.SOLID,
Lod.LOD2); Lod.LOD2);
assertNull(geom.getEdges());
geom.updateEdges();
List<Edge> edges = geom.getEdges(); List<Edge> edges = geom.getEdges();
assertNotNull(edges); assertNotNull(edges);
assertFalse(edges.isEmpty()); assertFalse(edges.isEmpty());
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment