I am using EclEmma plugin for checking test coverage for maven project. It works, but it gives coverage results based on all the functions in the testing class. As there is some getter, setter and private functions are there, i want to exclude them from calculating test coverage. Is there any way to do so?
Asked
Active
Viewed 1,593 times
2
-
i think EclEmma currently not providing such service. :) – Dipak Nov 19 '12 at 11:16
-
One more thing i would like to add, i s if you want to exclude some method in a class from coverage analysis better analysis the coverage of methods you needs. EclEmma provide details of each method coverage and with respect to different counter, like branch, complexity, line, instruction, etc. I solved my problem by these measurements. hope this information will help someone. – Dipak Nov 21 '12 at 05:01