* @throws ParserConfigurationException
* @throws IOException
* @throws SAXException
*/
public void testSinglePointRoundTrip() throws SAXException, IOException, ParserConfigurationException{
PointGenerator pg = new PointGenerator();
pg.setGeometryFactory(geometryFactory);
pg.setBoundingBox(new Envelope(0,10,0,10));
Point pt = (Point) pg.create();
GMLWriter out = new GMLWriter();
out.setPrefix(null);
out.write(pt,getWriter());