1

I've worked with multiple Gradle projects that generate reports in the format pictured below. I like this format: it presents the information I require in a concise and intuitive format.

Question: Is it possible to generate reports in an identical format from Maven?

enter image description here

Liam M
  • 5,306
  • 4
  • 39
  • 55

1 Answers1

0

Likely Maven Surefire Report plugin does want you want. Also you may find useful the following SO question Is there a decent HTML Junit report plugin for Maven?

user3159253
  • 16,836
  • 3
  • 30
  • 56
  • Thanks for the reply. Is it possible to tweak the plugin to include the STDIO and STDERR output corresponding to each test? – Liam M Oct 04 '17 at 06:27
  • Well, I can't find such a possibility. But output can be preserved with [redirectTestOutputToFile](http://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#redirectTestOutputToFile) option of Surefire plugin – user3159253 Oct 04 '17 at 07:06