change
This commit is contained in:
parent
7be93e1908
commit
38459ed354
|
@ -5,24 +5,24 @@ import com.taosdata.jdbc.utils.TDNodes;
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
|
|
||||||
public class BaseTest {
|
public abstract class BaseTest {
|
||||||
|
|
||||||
private static boolean testCluster = false;
|
private static boolean testCluster = false;
|
||||||
private static TDNodes nodes = new TDNodes();
|
private static TDNodes nodes = new TDNodes();
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void setupEnv() {
|
public static void setupEnv() {
|
||||||
try{
|
try {
|
||||||
if (nodes.getTDNode(1).getTaosdPid() != null) {
|
if (nodes.getTDNode(1).getTaosdPid() != null) {
|
||||||
System.out.println("Kill taosd before running JDBC test");
|
System.out.println("Kill taosd before running JDBC test");
|
||||||
nodes.getTDNode(1).setRunning(1);
|
nodes.getTDNode(1).setRunning(1);
|
||||||
nodes.stop(1);
|
nodes.stop(1);
|
||||||
}
|
}
|
||||||
nodes.setTestCluster(testCluster);
|
nodes.setTestCluster(testCluster);
|
||||||
nodes.deploy(1);
|
nodes.deploy(1);
|
||||||
nodes.start(1);
|
nodes.start(1);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
package com.taosdata.jdbc.cases;
|
package com.taosdata.jdbc.cases;
|
||||||
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.sql.*;
|
import java.sql.*;
|
||||||
|
|
Loading…
Reference in New Issue