Skip to content

Commit

Permalink
[SUREFIRE-2153] Replace SurefireReportGenerator with a new SurefireRe…
Browse files Browse the repository at this point in the history
…portRenderer

This closes #625
  • Loading branch information
michael-o committed May 1, 2023
1 parent da48b3a commit 33d30c6
Show file tree
Hide file tree
Showing 9 changed files with 788 additions and 927 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,15 @@ public void executeReport(Locale locale) throws MavenReportException {
return;
}

new SurefireReportGenerator(
getReportsDirectories(), locale, showSuccess, determineXrefLocation(), getConsoleLogger())
.doGenerateReport(getBundle(locale), getSink());
SurefireReportRenderer r = new SurefireReportRenderer(
getSink(),
locale,
getBundle(locale),
getConsoleLogger(),
showSuccess,
getReportsDirectories(),
determineXrefLocation());
r.render();
}

@Override
Expand Down
Loading

0 comments on commit 33d30c6

Please sign in to comment.