01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2008.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.repository.sail;
07:
08: import java.io.IOException;
09:
10: import org.openrdf.repository.Repository;
11: import org.openrdf.repository.RepositoryConnectionTest;
12: import org.openrdf.sail.rdbms.postgresql.PgSqlStore;
13:
14: public class PgSqlStoreConnectionTest extends RepositoryConnectionTest {
15:
16: public PgSqlStoreConnectionTest(String name) {
17: super (name);
18: }
19:
20: @Override
21: protected Repository createRepository() throws IOException {
22: return new SailRepository(new PgSqlStore("sesame_test"));
23: }
24: }
|