*
* @throws Exception
*/
@Test
public void testSplitMultiPolygon() throws Exception {
MultiPolygon splitee = (MultiPolygon) SplitTestUtil
.read("MULTIPOLYGON(((0 0, 3 0, 3 3, 0 3, 0 2, 2 2, 2 1, 0 1, 0 0)), ((4 0, 6 0, 6 3, 4 3, 4 0)))");
LineString splitter = (LineString) SplitTestUtil.read("LINESTRING(1 5, 1 -1, 5 -1, 5 4)");
Geometry partA = SplitTestUtil.read("POLYGON((0 0, 1 0, 1 1, 0 1, 0 0))");
Geometry partB = SplitTestUtil.read("POLYGON((1 0, 3 0, 3 3, 1 3, 1 2, 2 2, 2 1, 1 1, 1 0))");