Reputation: 423
ReportNG is a nice Html Reporter plugin for TestNG. I'm searching for an equivalent Version when using JUnit. Does anyone knows some useful plugin?
Upvotes: 0
Views: 1456
Reputation: 61705
There isn't a html reporter for JUnit. However, if you're using maven or ant there are.
For maven, look at maven-surefire-plugin (specifically maven-surefire-report-plugin)
For ant, look at the JUnit Report task.
Upvotes: 1