use of org.camunda.bpm.qa.performance.engine.framework.PerfTestRun in project camunda-bpm-platform by camunda.
the class ActivityPerfTestWatcher method afterPass.
public void afterPass(PerfTestPass pass) {
ProcessEngine processEngine = PerfTestProcessEngine.getInstance();
HistoryService historyService = processEngine.getHistoryService();
for (PerfTestRun run : pass.getRuns().values()) {
logActivityResults(pass, run, historyService);
}
}
Aggregations