Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/framework/PrintStreamPerformanceRecordAnalyzer.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/framework/PrintStreamPerformanceRecordAnalyzer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/framework/PrintStreamPerformanceRecordAnalyzer.java b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/framework/PrintStreamPerformanceRecordAnalyzer.java
index 28486e0855..651929c656 100644
--- a/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/framework/PrintStreamPerformanceRecordAnalyzer.java
+++ b/plugins/org.eclipse.emf.cdo.tests/src/org/eclipse/emf/cdo/tests/performance/framework/PrintStreamPerformanceRecordAnalyzer.java
@@ -55,7 +55,7 @@ public class PrintStreamPerformanceRecordAnalyzer implements IPerformanceRecordA
"Test name", //
"Test Case Name", //
"Average Duration");
-
+
out.println(recordString);
}
@@ -63,14 +63,14 @@ public class PrintStreamPerformanceRecordAnalyzer implements IPerformanceRecordA
{
IScenario scenario = performanceRecord.getScenario();
- String recordString = MessageFormat.format("{0};{1};{2};{3};{4};{5};{6}", //
+ String recordString = MessageFormat.format("{0};{1};{2};{3};{4};{5};{6};{7};{8}", //
scenario.getContainerConfig().getName(), //
scenario.getRepositoryConfig().getName(), //
scenario.getSessionConfig().getName(), //
scenario.getModelConfig().getName(), //
performanceRecord.getTestName(), //
performanceRecord.getTestCaseName(), //
- performanceRecord.getDurationAvg());
+ performanceRecord.getDurationAvg(), performanceRecord.getDurationMin(), performanceRecord.getDurationMax());
out.println(recordString);
}

Back to the top