I am quite new to maven scoverage plugin which is the preferred code coverage tool in the team that I am working with. I am trying to generate reports for test coverage using the following command:
mvn scoverage:report
It gives me a detailed report showing class name and code coverage both in terms of lines of code and branches but it does not show which lines/branches of code are not covered by unit tests.
Is there an option with scoverage that I can use to display those lines or generate as part of report?
I have tried googling but haven't been able to find anything helpful for scoverage