We have inherited a NetBeans
Modules project (a.k.a. NetBeans
Platform project) which builds using the NetBeans
Ant
tasks. We want to generate a code coverage report of the project to get an idea of what components are not being unit tested.
Generating a report is not part of the build process, it is simply something we want to do to understand the existing unit test coverage in the project.
We've decided to use JaCoCo
to try and generate this. However the native support in NetBeans
is for maven based projects. Unfortunately the TikiOne JaCoCoverage plugin currently does not support NetBeans
Modules projects.
We are happy to just drive this via CLI
to get an initial report. Does anyone have a success means of doing so under the given constraints?