}
// Named graph, no side effects.
@Test public void delete_02()
{
DatasetGraphAccessor updater = getDatasetUpdater() ;
//updater.httpDelete(n1) ;
Graph graph = updater.httpGet(n1) ;
assertNullOrEmpty(graph) ;
updater.httpPut(graph2) ;
updater.httpPut(n1, graph1) ;
updater.httpDelete() ;
graph = updater.httpGet() ;
assertTrue(graph.isEmpty()) ;
updater.httpPut(graph2) ;
graph = updater.httpGet(n1) ;
assertFalse(graph.isEmpty()) ;
updater.httpDelete(n1) ;
graph = updater.httpGet(n1) ;
assertNullOrEmpty(graph) ;
graph = updater.httpGet() ;
assertFalse(graph.isEmpty()) ;
}