another note:
it seems jacoco ignores the lines of the lambda from the method level report. 
So a method like:

void doit(Param p){
  p.reset();
  p.call(() -> {
    log.debug("logit");
  });
}

will be reported as 100% on 3 lines (p.reset(), p.cal..., last '}')

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to