Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 391 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 391 Bytes

Basic Testing Setup for Java

This code uses maven as a Java build tool. Maven is responsible for managing dependencies and automating running the code.

  • To compile all code: mvn compile
  • To run all tests: mvn test
  • To determine coverage information:
    • mvn jacoco:report
    • Open target/site/jacoco/index.html for an HTML coverage report