edit the save path of the detail result

This commit is contained in:
coderfengyun 2013-12-16 10:05:49 +08:00
parent 22789ada8e
commit 600ea1f494
1 changed files with 2 additions and 1 deletions

View File

@ -237,7 +237,8 @@ public class AgentResultDataCollector extends AbstractDataCollector {
return "DetailResults" + System.getProperty("file.separator")
+ new SimpleDateFormat("yyyyMMdd").format(new Date())
+ System.getProperty("file.separator") + this.getTestID() + "_"
+ behaviorResult.getBehaviorId() + ".txt";
+ behaviorResult.getBehaviorId() + "_"
+ System.currentTimeMillis() + ".txt";
}
@Override