use of com.graphaware.runtime.GraphAwareRuntime in project neo4j-nlp by graphaware.
the class PipelineLifecycleIntegrationTest method setUp.
@Before
@Override
public void setUp() throws Exception {
super.setUp();
GraphAwareRuntime runtime = GraphAwareRuntimeFactory.createRuntime(getDatabase());
runtime.registerModule(new NLPModule("NLP", NLPConfiguration.defaultConfiguration(), getDatabase()));
runtime.start();
runtime.waitUntilStarted();
}
Aggregations