Hello,
I'm currently using the JaCoCo API to get coverage information after running some tests with
JUnitCore.runClasses(Class<?> ...)
I was wondering if there's a way to get the test classes back with only the coverage results gathered in the
.
For example, if I run 3 tests classes, testing a target class, I'd like to know which test method (or test instruction) has covered which target method (or target instruction).
For know I run my tests individually, and fetch the coverage information like that, but I'd like to know if there's an easier way to do that.
Thank you