1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2008, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/test/jdbc3/Jdbc3TestSuite.java,v 1.19 2008/11/15 17:48:53 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.test.jdbc3;
import org.postgresql.test.TestUtil;
import junit.framework.TestSuite;
/*
* Executes all known tests for JDBC3
*/
public class Jdbc3TestSuite extends TestSuite
{
/*
* The main entry point for JUnit
*/
public static TestSuite suite() throws Exception
{
Class.forName("org.postgresql.Driver");
TestSuite suite = new TestSuite();
try
{
java.sql.Connection con = TestUtil.openDB();
if ( TestUtil.haveMinimumServerVersion( con, "8.1") && TestUtil.isProtocolVersion(con, 3))
{
suite.addTestSuite(Jdbc3CallableStatementTest.class);
}
if ( TestUtil.haveMinimumServerVersion( con, "8.2") )
{
suite.addTestSuite(GeneratedKeysTest.class);
}
con.close();
}
catch (Exception ex )
{
ex.printStackTrace();
}
suite.addTestSuite(Jdbc3SavepointTest.class);
suite.addTestSuite(TypesTest.class);
suite.addTestSuite(ResultSetTest.class);
suite.addTestSuite(ParameterMetaDataTest.class);
suite.addTestSuite(Jdbc3BlobTest.class);
suite.addTestSuite(DatabaseMetaDataTest.class);
return suite;
}
}
|