Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In rcov, is there a way to find which test method traversed a given line of code being tested?

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)?

like image 388
Aaron Fi Avatar asked Nov 16 '11 09:11

Aaron Fi


1 Answers

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.

like image 162
robustus Avatar answered Oct 14 '22 00:10

robustus