I have a maven project that compiled as a WAR file. Then I have a separate test project containing an integration test. This project will launch the web application via tomcat from the WAR files, and then run the tests.
The only coverage report I have now is only for unit tests in the main project. Using JMockit coverage and JUnit .
How can I get code coverage for this web application?
source
share