File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
elasticsearch-jdbc/src/test/java/org/apn/elasticsearch/jdbc Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 22
33import org .junit .After ;
44import org .junit .Before ;
5+ import org .junit .Ignore ;
56import org .junit .Test ;
67
78import java .sql .*;
1112/**
1213 * Test {@link JDBCClient} class.
1314 * This test required a elasticsearch cluster to be setup locally.
15+ * Due to this this test is skipped (ignored). please setup a local cluster before running the test.
1416 *
1517 * @Amit Nema
1618 */
19+ @ Ignore
1720public class JDBCClientTest {
1821
1922 private JDBCClient jdbcClient ;
@@ -25,11 +28,11 @@ public void setUp() {
2528
2629 @ After
2730 public void tearDown () {
28- jdbcClient =null ;
31+ jdbcClient = null ;
2932 }
3033
3134 @ Test
32- public void executeQuery () throws SQLException {
35+ public void getConnection () throws SQLException {
3336 StringBuilder outTable = new StringBuilder ();
3437
3538 try (Connection conn = jdbcClient .getConnection ()) {
You can’t perform that action at this time.
0 commit comments