Steven Sherry
03/08/2020, 8:33 PMfix()
, I was able to drastically improve my code coverage doing the following in my tasks block inside of my build.gradle.kts :
jacocoTestReport {
classDirectories.setFrom(
sourceSets.main.get()
.output.asFileTree.matching {
exclude("**/*inlined*.class")
}
)
}