use of org.eclipse.vorto.repository.core.impl.InMemoryTemporaryStorage in project vorto by eclipse.
the class AbstractIntegrationTest method beforeEach.
public void beforeEach() throws Exception {
super.beforeEach();
startRepositoryWithConfiguration(new ClassPathResource("vorto-repository.json").getInputStream());
modelRepository = new JcrModelRepository();
modelRepository.setUploadStorage(new InMemoryTemporaryStorage());
modelRepository.setSession(jcrSession());
modelRepository.createValidators();
modelRepository.setModelSearchUtil(modelSearchUtil);
}
use of org.eclipse.vorto.repository.core.impl.InMemoryTemporaryStorage in project vorto by eclipse.
the class BulkUploadTest method beforeEach.
@Override
public void beforeEach() throws Exception {
super.beforeEach();
bulkUploadHelper = new BulkUploadHelper(this.modelRepository, new InMemoryTemporaryStorage());
}
Aggregations