File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
jdbc-v2/src/test/java/com/clickhouse/jdbc Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11package com .clickhouse .jdbc ;
22
3+ import com .clickhouse .client .ClickHouseServerForTest ;
4+ import org .testng .annotations .AfterTest ;
5+ import org .testng .annotations .BeforeTest ;
6+ import org .testng .annotations .Test ;
7+
38import java .sql .Connection ;
49import java .sql .SQLException ;
510import java .sql .SQLFeatureNotSupportedException ;
611import java .util .Properties ;
712
13+ import static org .testng .Assert .assertNotNull ;
814import static org .testng .Assert .assertNull ;
915import static org .testng .Assert .assertThrows ;
10- import static org .testng .Assert .assertNotNull ;
11-
12- import com .clickhouse .client .ClickHouseServerForTest ;
13- import org .testng .annotations .AfterTest ;
14- import org .testng .annotations .BeforeClass ;
15- import org .testng .annotations .Test ;
1616
1717
1818public class DataSourceTest extends JdbcIntegrationTest {
Original file line number Diff line number Diff line change @@ -183,17 +183,17 @@ public void testGetServerVersions() throws Exception {
183183 }
184184 }
185185
186- @ Test (groups = { "integration" }, enabled = false )
186+ @ Test (groups = { "integration" })
187187 public void testGetTypeInfo () throws Exception {
188188 Assert .fail ("Not implemented" );
189189 }
190190
191- @ Test (groups = { "integration" }, enabled = false )
191+ @ Test (groups = { "integration" })
192192 public void testGetProcedures () throws Exception {
193193 Assert .fail ("Not implemented" );
194194 }
195195
196- @ Test (groups = { "integration" }, enabled = false )
196+ @ Test (groups = { "integration" })
197197 public void testGetClientInfoProperties () throws Exception {
198198 try (Connection conn = getJdbcConnection ()) {
199199 DatabaseMetaData dbmd = conn .getMetaData ();
You can’t perform that action at this time.
0 commit comments