Package com.tinkerpop.blueprints.util.wrappers.event

Examples of com.tinkerpop.blueprints.util.wrappers.event.EventGraph


    }

    @Test
    public void unwrapGraphEventWrapping() {
        Graph tg = TinkerGraphFactory.createTinkerGraph();
        Graph g = new EventGraph(tg);
        Graph unwrapped = RexsterApplicationGraph.unwrapGraph(g);
        Assert.assertEquals(tg, unwrapped);
    }
View Full Code Here


    }

    @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);
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.blueprints.util.wrappers.event.EventGraph

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.