Ignore code coverage for unit tests in EclEmma
I did the following steps: Go to Preferences->Java->Code Coverage and set the “Only path entries matching” option to src/main/java It seems to work nicely.
I did the following steps: Go to Preferences->Java->Code Coverage and set the “Only path entries matching” option to src/main/java It seems to work nicely.
In 0.8.0 release, Jacoco added support for filtering out all methods annotated with @lombok.Generated from their reports. The only thing you need to change is to add lombok.config to the root of your project with the following settings: config.stopBubbling = true lombok.addLombokGeneratedAnnotation = true config.stopBubbling = true tells Lombok that this is your root directory … Read more