Beispiel #1
0
 public static String getCSVHeader() {
   return "ExecutionOrder;"
       + CommandBenchmarkParams.getCSVHeader()
       + ";"
       + CommandBenchmarkStats.getCSVHeader()
       + ";"
       + "CounterType";
 }
Beispiel #2
0
 public String toCSVRow() {
   return executionOrder
       + ";"
       + params.toCSVRow()
       + ";"
       + stats.toCSVRow()
       + ";"
       + counterType.toString();
 }