Hi All,
My team recently switched to Jacoco for code coverage. It works fine in Eclipse (EclEmma), but in Gradle we get 0% code coverage on classes that use Java 8 lambdas. Switching from lambdas to double colons fixed the problem. We are applying the latest version of jacoco as well:
jacoco {
toolVersion = “0.7.5.201505241946”
}
Any ideas why we aren’t getting coverage?
Thanks