Package org.openrdf.sail.rdbms

Source Code of org.openrdf.sail.rdbms.PgSqlStoreConnectionTest

/*
* Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2008.
*
* Licensed under the Aduna BSD-style license.
*/
package org.openrdf.sail.rdbms;

import java.io.IOException;

import org.openrdf.repository.Repository;
import org.openrdf.repository.RepositoryConnectionTest;
import org.openrdf.repository.sail.SailRepository;
import org.openrdf.sail.rdbms.postgresql.PgSqlStore;

public class PgSqlStoreConnectionTest extends RepositoryConnectionTest {

  public PgSqlStoreConnectionTest(String name) {
    super(name);
  }

  @Override
  protected Repository createRepository()
    throws IOException
  {
    PgSqlStore sail = new PgSqlStore("sesame_test");
    sail.setUser("sesame");
    sail.setPassword("opensesame");
    return new SailRepository(sail);
  }
}
TOP

Related Classes of org.openrdf.sail.rdbms.PgSqlStoreConnectionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.