use of uk.gov.gchq.gaffer.arrayliststore.data.generator.SimpleGenerator in project Gaffer by gchq.
the class ArrayListStoreTest method addElementsToGraph.
private void addElementsToGraph(final Graph graph) throws OperationException {
final OperationChain<Void> opChain = new OperationChain.Builder().first(new GenerateElements.Builder<>().objects(getDomainObjects()).generator(new SimpleGenerator()).build()).then(new AddElements()).build();
// execute the operation
graph.execute(opChain, new User());
}
Aggregations