Beispiel #1
0
 private void addCountsToResult(
     TestExecutionReport.TestResult currentResult, TestSummary testSummary) {
   currentResult.right = Integer.toString(testSummary.getRight());
   currentResult.wrong = Integer.toString(testSummary.getWrong());
   currentResult.ignores = Integer.toString(testSummary.getIgnores());
   currentResult.exceptions = Integer.toString(testSummary.getExceptions());
 }