In order to make our code coverage statistics more accurate, we'd like to exclude accessors (at least) and certain source filename patterns (if possible) from code coverage statistics. We could implement runners to auto-test accessors, but this would be more work and would result in skewed coverage numbers on the business logic cases in our codebase.
I've poked around on the web, and it's very unclear if this is implemented in Jacoco yet, or if it's still being discussed, or if development on this feature is dead. Other coverage tools such as Cobertura support this feature - how can I do in Jacoco? I'd rather have our existing tool work than spend a lot of time migrating over to another framework.
Thanks for your help!
Michael