}
@Test
public void unwrapGraphReadonlyEventWrapping() {
Graph tg = TinkerGraphFactory.createTinkerGraph();
Graph eg = new EventGraph(tg);
Graph g = new ReadOnlyGraph(eg);
Graph unwrapped = RexsterApplicationGraph.unwrapGraph(g);
Assert.assertEquals(tg, unwrapped);
}