parent
a1d32a7e29
commit
b8c2367d81
|
@ -192,7 +192,6 @@ public class TestPlan implements IAggregate {
|
|||
return null;
|
||||
}
|
||||
|
||||
|
||||
public void run() {
|
||||
Logger.getLogger(TestPlan.class).info(
|
||||
this.getTestPlanRunId() + " start to run ");
|
||||
|
@ -269,9 +268,6 @@ public class TestPlan implements IAggregate {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
private List<Object> collectResult() {
|
||||
List<Object> resultList = new LinkedList<Object>();
|
||||
|
@ -291,7 +287,6 @@ public class TestPlan implements IAggregate {
|
|||
}
|
||||
}
|
||||
return resultList;
|
||||
|
||||
}
|
||||
|
||||
public void update() {
|
||||
|
|
|
@ -230,7 +230,6 @@ public class TestPlanScript implements RunningScriptInterface {
|
|||
|
||||
public List<TestPlanScriptResult> doAfterRun() {
|
||||
try {
|
||||
|
||||
ScriptResultModel scriptResultModel = this.getSampler()
|
||||
.getResultModelFromAgent();
|
||||
|
||||
|
@ -243,7 +242,8 @@ public class TestPlanScript implements RunningScriptInterface {
|
|||
return null;
|
||||
}
|
||||
}
|
||||
public List<TestPlanScriptResult> createFinishedResult(){
|
||||
|
||||
public List<TestPlanScriptResult> createFinishedResult() {
|
||||
ScriptResultModel scriptResultModel = ScriptResultModel
|
||||
.buildFinishedResult();
|
||||
List<TestPlanScriptResult> testPlanScriptResultList = this
|
||||
|
|
Loading…
Reference in New Issue