parent
3b1f42ca9d
commit
dff899878d
|
@ -35,7 +35,7 @@ public class BatchTestCaseExecution {
|
|||
}
|
||||
}else{ //批量执行用例
|
||||
String temp[]=batchcase.split("\\#",-1);
|
||||
for(int i=0;i<temp.length;i++){
|
||||
for(int i=0;i<temp.length-1;i++){
|
||||
String testCaseExternalId = temp[i].substring(0, temp[i].indexOf("%"));
|
||||
int version = Integer.parseInt(temp[i].substring(temp[i].indexOf("%")+1,temp[i].length()));
|
||||
TestControl.Debugcount++; //多线程计数++,用于检测线程是否全部执行完
|
||||
|
|
|
@ -10,7 +10,7 @@ public class ProjectCase implements java.io.Serializable{
|
|||
private String name;
|
||||
private int projectid;
|
||||
private int moduleid;
|
||||
private Integer[] moduleidarr;
|
||||
private String[] moduleidarr;
|
||||
private String modulename;
|
||||
private String projectname;
|
||||
private String remark;
|
||||
|
@ -33,10 +33,10 @@ public class ProjectCase implements java.io.Serializable{
|
|||
public void setModuleid(int moduleid) {
|
||||
this.moduleid = moduleid;
|
||||
}
|
||||
public Integer[] getModuleidarr() {
|
||||
public String[] getModuleidarr() {
|
||||
return moduleidarr;
|
||||
}
|
||||
public void setModuleidarr(Integer[] moduleidarr) {
|
||||
public void setModuleidarr(String[] moduleidarr) {
|
||||
this.moduleidarr = moduleidarr;
|
||||
}
|
||||
public int getChecktype() {
|
||||
|
|
Loading…
Reference in New Issue