fix(xpack): 修复license数量显示为0 问题
This commit is contained in:
parent
bdf11d09aa
commit
09b39ca249
|
@ -102,7 +102,7 @@ public class MsLoopController extends MsTestElement {
|
|||
return counterConfig;
|
||||
}
|
||||
|
||||
private LoopController loopController() {
|
||||
private LoopController initLoopController() {
|
||||
LoopController loopController = new LoopController();
|
||||
loopController.setEnabled(true);
|
||||
loopController.setName("LoopController");
|
||||
|
@ -113,7 +113,7 @@ public class MsLoopController extends MsTestElement {
|
|||
return loopController;
|
||||
}
|
||||
|
||||
public String getCondition() {
|
||||
private String getCondition() {
|
||||
String variable = "\"" + this.whileController.getVariable() + "\"";
|
||||
String operator = this.whileController.getOperator();
|
||||
String value = "\"" + this.whileController.getValue() + "\"";
|
||||
|
@ -136,7 +136,7 @@ public class MsLoopController extends MsTestElement {
|
|||
return "${__jexl3(" + variable + operator + value + ")}";
|
||||
}
|
||||
|
||||
private WhileController whileController() {
|
||||
private WhileController initWhileController() {
|
||||
String condition = getCondition();
|
||||
if (StringUtils.isEmpty(condition)) {
|
||||
return null;
|
||||
|
@ -150,7 +150,7 @@ public class MsLoopController extends MsTestElement {
|
|||
return controller;
|
||||
}
|
||||
|
||||
private ForeachController foreachController() {
|
||||
private ForeachController initForeachController() {
|
||||
ForeachController controller = new ForeachController();
|
||||
controller.setEnabled(true);
|
||||
controller.setName("ForeachController");
|
||||
|
@ -175,13 +175,13 @@ public class MsLoopController extends MsTestElement {
|
|||
runTime.setRuntime(timeout);
|
||||
// 添加超时处理,防止死循环
|
||||
HashTree hashTree = tree.add(runTime);
|
||||
return hashTree.add(whileController());
|
||||
return hashTree.add(initWhileController());
|
||||
}
|
||||
if (StringUtils.equals(this.loopType, LoopConstants.FOREACH.name()) && this.forEachController != null) {
|
||||
return tree.add(foreachController());
|
||||
return tree.add(initForeachController());
|
||||
}
|
||||
if (StringUtils.equals(this.loopType, LoopConstants.LOOP_COUNT.name()) && this.countController != null) {
|
||||
return tree.add(loopController());
|
||||
return tree.add(initLoopController());
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit b35af517d888268abd3a8f2b58d6ea94335138a5
|
||||
Subproject commit 5e0b365f1080197e84055e80071165787e2e79c5
|
|
@ -1 +1 @@
|
|||
Subproject commit a3d469fd18f663d11e5c1c49f71ced6e3e4b292f
|
||||
Subproject commit 4cc8926bad84083f675a262d6766a92bb09a890a
|
Loading…
Reference in New Issue