|
I have a multi-module project, the application is running on an application server instrumented with a Jacocoagent, integration test are run against the application, and a code coverage exec file has been dumped. I am using EclEmma plugin 2.3.2 in Eclipse Kepler to generate the code coverage, I opened the Coverage view, clicked the "Import session", selected the dumped exec file as the data file, and selected all the project source files. The Generated coverage reports shows all the packages have 0.0%
coverage. When I open the exec file itself, it shows the number of total
probes, and the executed probes. For example, for class x.y.z the total
probes is 30, and the executed probes is 16, but the coverage for the
same class is shown as 0.0%. Why the coverage is 0.0%? since the executed probes is 16, it should have some coverages, instead of 0, right? |