add testResultSave to testPlan

This commit is contained in:
fanfuxiaoran 2014-04-09 13:35:24 +08:00
parent db6393773c
commit 8b2b7c1c89
2 changed files with 1 additions and 1 deletions

View File

@ -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;

View File

@ -250,6 +250,7 @@ public class TestPlanFactory {
if (testPlanInRepo == null) {
return null;
}
testPlanInRepo.setTestResultSave(testResultSave);
testPlanInRepo.setLoadDistribute(this.getLoadDistribute());
for (TestPlanScript testPlanScript : testPlanInRepo
.getTestPlanScripts()) {