If you are building a Graph implementation, you can validate with gremlin-test if you follow these instructions:
http://tinkerpop.apache.org/docs/3.2.2/dev/provider/#validating-with-gremlin-test It might also help to look at the tinkergraph-gremlin tests for structure to see how they are setup. You pretty much need a file like this: https://github.com/riptano/tinkerpop/blob/ae1978d53496fbe17edd09bc5e63db9a777800fa/tinkergraph-gremlin/src/test/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraphStructureStandardTest.java and a GraphProvider implementation like this: https://github.com/riptano/tinkerpop/blob/ae1978d53496fbe17edd09bc5e63db9a777800fa/tinkergraph-gremlin/src/test/java/org/apache/tinkerpop/gremlin/tinkergraph/TinkerGraphProvider.java On Sat, Sep 17, 2016 at 3:24 AM, Const Eust <[email protected]> wrote: > I'm trying to write a read-only OLTP interface bridge into a custom engine. >
