use of com.baidu.hugegraph.serializer.PathDeserializer in project incubator-hugegraph-toolchain by apache.
the class RestResultTest method init.
@BeforeClass
public static void init() {
graphManager = Mockito.mock(GraphManager.class);
SimpleModule module = new SimpleModule();
module.addDeserializer(Path.class, new PathDeserializer());
RestResult.registerModule(module);
}
Aggregations