Reputation: 109
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?
Upvotes: 1
Views: 644
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