01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2008.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.repository.sail;
07:
08: import junit.framework.TestSuite;
09:
10: import org.openrdf.repository.EquivalentTest;
11: import org.openrdf.repository.Repository;
12: import org.openrdf.sail.rdbms.mysql.MySqlStore;
13:
14: public class MySqlEquivalentTest extends EquivalentTest {
15:
16: public static TestSuite suite() throws Exception {
17: return EquivalentTest.suite(MySqlEquivalentTest.class);
18: }
19:
20: public MySqlEquivalentTest() {
21: super ();
22: }
23:
24: public MySqlEquivalentTest(String name) {
25: super (name);
26: }
27:
28: @Override
29: protected Repository newRepository() {
30: return new SailRepository(new MySqlStore("sesame_test"));
31: }
32:
33: }
|