()
| 20 | } |
| 21 | |
| 22 | public void disconnect() { |
| 23 | try { |
| 24 | st.close(); |
| 25 | conn.close(); |
| 26 | } catch (SQLException e) { |
| 27 | throw new RuntimeException(e); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | public void addTest(String query, String[][] expectedResults) { |
| 32 | tests.add(new Test(query, expectedResults)); |