bld-jacoco-report/README.md
2023-08-10 21:50:24 -07:00

1.7 KiB
Executable file

Bld Extension to Code Coverage Analysis with JaCoCo

License (3-Clause BSD) Java Release Snapshot GitHub CI

To run the tests and generate the code coverage reports:

@BuildCommand(summary = "Generates Jacoco Reports")
public void jacoco() throws IOException {
    new JacocoReportOperation()
            .fromProject(this)
            .execute();
}
./bld compile jacoco
  • The HTML, CVS and XML reports will be automatically created in the build/reports/jacoco/test directory.
  • The execution coverage data will be automatically recorded in the build/jacoco/jacoco.exec file.

Please check the JacocoReportOperation documentation for all available configuration options.