161718192021222324
Pipe pipe = new GremlinStartPipe(graph); pipe.enablePath(true); assertEquals(pipe.getCurrentPath().size(), 0); pipe = new StartPipe(graph); pipe.enablePath(true); assertEquals(pipe.getCurrentPath().size(), 1); }