8

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

Andrew Grimm
  • 78,473
  • 57
  • 200
  • 338
Aaron Fi
  • 10,116
  • 13
  • 66
  • 91
  • Might I ask why this would be interesting to know? Or is it because code seems covered without having any tests for it? – nathanvda Nov 25 '11 at 11:30

1 Answers1

2

i'm pretty sure, that rcov doesn't support this feature.

Since the documentation for the CoverageInfo Class suggests, that rcov only tracks if a given linen was executed, not in what context.

robustus
  • 3,626
  • 1
  • 26
  • 24