Skip to content

Files

Latest commit

540d581 · Jul 8, 2015

History

History

code-coverage-jacoco

This an example application of my blog entry:

Creating Code Coverage Reports for Unit And Integration Tests with The JaCoCo Maven Plugin:
http://www.petrikainulainen.net/programming/maven/creating-code-coverage-reports-for-unit-and-integration-tests-with-the-jacoco-maven-plugin/

You can create code coverage reports by running the following commands on command line:

mvn clean test (Creates code coverage report for unit tests)
mvn clean verify -P integration-test (Creates code coverage report for integration tests)
mvn clean verify -P all-tests (Creates code coverage reports for unit and integration tests)