use of org.apache.rya.rdftriplestore.RdfCloudTripleStoreConnection.StoreTripleSource in project incubator-rya by apache.
the class StatementPatternEvalTest method init.
@Before
public void init() throws Exception {
conf = getConf();
Instance mock = new MockInstance("instance");
Connector conn = mock.getConnector("root", new PasswordToken(""));
dao = new AccumuloRyaDAO();
dao.setConnector(conn);
dao.init();
eval = new ParallelEvaluationStrategyImpl(new StoreTripleSource(conf, dao), null, null, conf);
}
Aggregations