public void testForgetsClosedGraphs()
{
File scratch = FileUtils.getScratchDirectory( "jena-test-FileGraphMaker-forgets" );
FileGraphMaker m = new FileGraphMaker( scratch.getPath(), true );
m.createGraph( "example" ).close();
assertEquals( new HashSet<String>(), m.listGraphs().toSet() );
m.close();
}
public void testDoesntReusedClosedGraphs()
{