super(); // Showing RED
or:
super(parameter list);// Showing RED
Ex:
public class customException extends FieldException {
private static final long serialVersionUID = 1L;
public static final Color MANDATORY = new Color(255, 231, 231); //Showing RED
public customException (List<JComponent> notSetComponents) {
super(MessageKey.FIELD_PAST_WEEK_ERROR, notSetComponents);// Showing RED
}
protected Color getMarkColor() {
return MANDATORY;
}
}
Super constructor is not covered.
Could you help me on this.
> To unsubscribe from this group and stop receiving emails from it, send an email to jacoco+unsubscribe@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/a6481ad4-f885-459e-a35e-31792fd7130d%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jacoco+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/B9D03EA0-759B-4F7B-AE59-5AC84F1CE466%40mountainminds.com.
On 28. May 2018, at 09:04, Jagadeesan P <jagade...@gmail.com> wrote:super(MessageKey.FIELD_PAST_WEEK_ERROR, notSetComponents);