Amy Cohen
Amy Cohen

Reputation: 109

How to analyse junit test results

I have a set of test cases, for which I need to demonstrate an analysis. Is there a plugin or any other way to analyse test results?

enter image description here

Upvotes: 1

Views: 644

Answers (1)

Vasu
Vasu

Reputation: 22452

You can use Cobertura Maven Plugin for analysing and code coverage reports on the unit tests.

You can refer the below links for more details on Cobertura Maven Plugin:

http://www.mojohaus.org/cobertura-maven-plugin/

https://www.mkyong.com/qa/maven-cobertura-code-coverage-example/

For Netbeans, you can refer tikione-jacocoverage plugin from below link: http://plugins.netbeans.org/plugin/48570/tikione-jacocoverage

Upvotes: 2

Related Questions