1314151617181920212223
public class GraphReaderTest { @Test public void quickTest() throws XMLStreamException, IOException { GexfReader gr = new StaxGraphReader(); InputStream in = new FileInputStream(new File("target/stax_basic.gexf")); gr.readFromStream(in); }