mirror of
https://github.com/postgres/postgres.git
synced 2025-04-20 00:42:27 +03:00
Applied patch from Oliver Jewett to clean up the testing README file
Modified Files: jdbc/org/postgresql/test/README
This commit is contained in:
parent
1ca4e700de
commit
c82bfea125
@ -168,7 +168,7 @@ behaviour or the intended implementation of a feature?
|
|||||||
----------------------
|
----------------------
|
||||||
package org.postgresql.test.jdbc2;
|
package org.postgresql.test.jdbc2;
|
||||||
|
|
||||||
import org.postgresql.test.JDBC2Tests;
|
import org.postgresql.test.TestUtil;
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
import java.sql.*;
|
import java.sql.*;
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ public class FooTest extends TestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected void setUp() throws Exception {
|
protected void setUp() throws Exception {
|
||||||
con = JDBC2Tests.openDB();
|
con = TestUtil.openDB();
|
||||||
stmt = con.createStatement();
|
stmt = con.createStatement();
|
||||||
|
|
||||||
// Drop the test table if it already exists for some
|
// Drop the test table if it already exists for some
|
||||||
@ -214,7 +214,7 @@ public class FooTest extends TestCase {
|
|||||||
stmt.close();
|
stmt.close();
|
||||||
}
|
}
|
||||||
if (con != null) {
|
if (con != null) {
|
||||||
JDBC2Tests.closeDB(con);
|
TestUtil.closeDB(con);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user