public void testSimpleFlush() throws Exception {
StringWriter writer = new StringWriter();
GraphicsDocument document = new DefaultSvgDocument(writer, false);
document.writeElement("g", true);
document.writeId("featureId");
document.writeElement("g", true);
document.writeAttribute("style", "my-super-style:true;");
document.writeId("styleId");
Assert.assertEquals("featureId.styleId", document.getCurrentId());
document.flush();
Assert.assertEquals("<g id=\"featureId\"><g style=\"my-super-style:true;\" id=\"featureId.styleId\"/></g>", writer.getBuffer().toString());