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.Repository;
09: import org.openrdf.repository.RepositoryConnectionTest;
10: import org.openrdf.sail.memory.MemoryStore;
11:
12: public class MemoryStoreConnectionTest extends RepositoryConnectionTest {
13:
14: public MemoryStoreConnectionTest(String name) {
15: super (name);
16: }
17:
18: @Override
19: protected Repository createRepository() {
20: return new SailRepository(new MemoryStore());
21: }
22: }
|