I’m using Emma coverage tool in eclipse when using unit tests to see my coverage for each test. However certain lines don’t get covered for instant the class declaration in an abstract class:
public abstract class ... {
Is it possible to either get Emma to cover this line or – preferably – ignore it?
Thanks,
Alexei Blue.
Emma already ignores lines that can’t be reached, such as class declarations. they are not marked as covered, but also don’t count to the overall lines.
i just verified it with this code:
it returns 100% coverage.