In rcov, is there a way to find which test method went through a given line of test code?

In rcov, is there a way to find which test methods were tracked as being covered by a given line of code (in your target code that you are testing)?

+8
ruby code-coverage rcov
source share
1 answer

I am sure rcov does not support this function.

Since the documentation for the CoverageInfo Class assumes that rcov only tracks if the given underwear was executed, and not in what context.

+2
source share

All Articles