theBell
theBell

Reputation: 423

Is there a html reporter plugin for JUnit, like ReportNG for TestNG?

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

Answers (1)

Matthew Farwell
Matthew Farwell

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

Related Questions