add testResultSave to testPlan
This commit is contained in:
parent
db6393773c
commit
8b2b7c1c89
|
@ -20,7 +20,6 @@ public class Main {
|
|||
try {
|
||||
MasterServer masterServer = new MasterServer(getPortToServe());
|
||||
masterServer.start();
|
||||
System.out.println("server started");
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return;
|
||||
|
|
|
@ -250,6 +250,7 @@ public class TestPlanFactory {
|
|||
if (testPlanInRepo == null) {
|
||||
return null;
|
||||
}
|
||||
testPlanInRepo.setTestResultSave(testResultSave);
|
||||
testPlanInRepo.setLoadDistribute(this.getLoadDistribute());
|
||||
for (TestPlanScript testPlanScript : testPlanInRepo
|
||||
.getTestPlanScripts()) {
|
||||
|
|
Loading…
Reference in New Issue