boolean res = g.isSimple();
assertTrue(!res);
assertTrue(g.isSimpleRelaxed());
Geometry resg = OperatorSimplifyOGC.local().execute(g.getEsriGeometry(), null, true, null);
OGCGeometry og = OGCGeometry.createFromEsriGeometry(resg, null);
String res_str = og.asText();
res = og.isSimple();
assertTrue(res);
assertTrue(og.geometryType().equals("Polygon"));
assertTrue(((OGCPolygon)og).numInteriorRing() == 2);
}