Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 745 Bytes

File metadata and controls

16 lines (14 loc) · 745 Bytes

This simple Maven/Java project with only 1 Domain class shows the basic features for testing and code quality. The following plugins are used:

  • Surefire and Failsafe - Unit or Integration testing
  • Findbugs - Code inspector
  • Jaoco - Test coverage

Results:

  • Scenario 1:
    • mvn clean install -Pdev ==> performs the unit test
    • mvn site ==> test coverage ... of 30%
  • Scenario 2:
    • mvn clean install -Pintegration ==> performs the INTEGRATION test
    • mvn site ==> test coverage ... of 60%

Where are the Jacoco results? After testing and running 'mvn clean', you can find the results in 'target/site/jacoco/index.html'. Open this file in the browser.