* @throws IOException
* @throws SAXException
*/
public void testSingleMultiPolygonManyPointsManyHolesRoundTrip() throws SAXException, IOException, ParserConfigurationException{
PolygonGenerator pgc = new PolygonGenerator();
pgc.setGeometryFactory(geometryFactory);
pgc.setGenerationAlgorithm(PolygonGenerator.BOX);
pgc.setNumberPoints(100);
pgc.setNumberHoles(100);
MultiGenerator pg = new MultiGenerator(pgc);
pg.setBoundingBox(new Envelope(0,10,0,10));
pg.setNumberGeometries(3);
pg.setGeometryFactory(geometryFactory);