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 junit.framework.Test;
09: import junit.framework.TestCase;
10: import junit.framework.TestSuite;
11:
12: /**
13: *
14: * @author James Leigh
15: */
16: public class TestAll extends TestCase {
17:
18: public static Test suite() {
19: TestSuite suite = new TestSuite(
20: "Test for org.openrdf.repository");
21: // $JUnit-BEGIN$
22: suite.addTestSuite(PgSqlStoreConnectionTest.class);
23: suite.addTestSuite(MySqlStoreConnectionTest.class);
24: // $JUnit-END$
25: return suite;
26: }
27:
28: }
|