eclEmma - full code coverage on class header?
Posted
by Fork
on Stack Overflow
See other posts from Stack Overflow
or by Fork
Published on 2010-05-30T09:02:03Z
Indexed on
2010/05/30
9:12 UTC
Read the original article
Hit count: 404
Hi,
I have a class that starts with:
public class GeneralID implements WritableComparable<GeneralID>{
...
}
And another that is:
public class LineValuesMapper<KI, VI, KO, VO> extends Mapper<LongWritable, Text, Text, IntWritable>{
...
}
All methods in these classes are covered. But not their header. The header of both classes gets painted as yellow with EclEmma.
Is there anything I can do to fully cover the class header?
© Stack Overflow or respective owner