use of nl.knaw.huygens.timbuctoo.v5.rdfio.implementations.rdf4j.Rdf4jIoFactory in project timbuctoo by HuygensING.
the class ImportManagerTest method makeSimpleDataSet.
@Before
public void makeSimpleDataSet() throws IOException {
logListLocation = File.createTempFile("logList", ".json");
logListLocation.delete();
filesDir = Files.createTempDir();
fileStorage = new FileSystemFileStorage(filesDir);
this.importManager = new ImportManager(JsonFileBackedData.getOrCreate(logListLocation, LogList::new, new TypeReference<LogList>() {
}), fileStorage, fileStorage, fileStorage, Executors.newSingleThreadExecutor(), new Rdf4jIoFactory(), () -> {
});
}
Aggregations