use of uk.gov.gchq.gaffer.accumulostore.SingleUseMockAccumuloStore in project Gaffer by gchq.
the class AggregatorIteratorTest method setup.
@BeforeClass
public static void setup() throws IOException, StoreException {
byteEntityStore = new SingleUseMockAccumuloStore();
gaffer1KeyStore = new SingleUseMockAccumuloStore();
defaultView = new View.Builder().edge(TestGroups.EDGE).entity(TestGroups.ENTITY).build();
}
use of uk.gov.gchq.gaffer.accumulostore.SingleUseMockAccumuloStore in project Gaffer by gchq.
the class AccumuloIDBetweenSetsRetrieverTest method setup.
@BeforeClass
public static void setup() throws StoreException, IOException {
byteEntityStore = new SingleUseMockAccumuloStore();
gaffer1KeyStore = new SingleUseMockAccumuloStore();
byteEntityStore.initialise(schema, PROPERTIES);
gaffer1KeyStore.initialise(schema, CLASSIC_PROPERTIES);
defaultView = new View.Builder().edge(TestGroups.EDGE).entity(TestGroups.ENTITY).build();
}
Aggregations