01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.repository.sail;
07:
08: import org.openrdf.repository.RDFSchemaRepositoryConnectionTest;
09: import org.openrdf.repository.Repository;
10: import org.openrdf.sail.inferencer.fc.ForwardChainingRDFSInferencer;
11: import org.openrdf.sail.memory.MemoryStore;
12:
13: public class RDFSchemaMemoryRepositoryConnectionTest extends
14: RDFSchemaRepositoryConnectionTest {
15:
16: public RDFSchemaMemoryRepositoryConnectionTest(String name) {
17: super (name);
18: }
19:
20: @Override
21: protected Repository createRepository() {
22: return new SailRepository(new ForwardChainingRDFSInferencer(
23: new MemoryStore()));
24: }
25: }
|