Reputation: 79
I have a Java program based on maven and for that I need to know the test coverage percentage. For testing, I am using testng.
I can already run the tests using command mvn test. All the tests are passing and I can see the report in surefire-reports/index.html. But I could not get the test coverage percentage that I need to supply for reporting.
mvn test
Expected result is Test Coverage Percentage is x%
Upvotes: 2
Views: 13938
Reputation: 176
For those Using Netbeans IDE, do the following
As shown Below
Code coverage for every file will be displayed.
Upvotes: 1
Reputation: 592
You can use Intellij to get a coverage report. Right-click on a test folder: run all with coverage and here you go,
maybe you will need to call report window explicitly, it's located View -> Tool Windows -> Coverage. The last question about default plugin. The only information I can tell you about it is located in settings-> plugins:
Upvotes: 1