* @throws IOException
* @throws ParserConfigurationException
* @throws SAXException
*/
public void testSinglePolygonManyPointsNoHoleRoundTrip() throws IOException, SAXException, ParserConfigurationException{
PolygonGenerator pg = new PolygonGenerator();
pg.setGeometryFactory(geometryFactory);
pg.setBoundingBox(new Envelope(0,10,0,10));
pg.setGenerationAlgorithm(PolygonGenerator.BOX);
pg.setNumberPoints(1000);
Polygon pt = (Polygon) pg.create();
GMLWriter out = new GMLWriter();
out.setPrefix("");
out.write(pt,getWriter());