You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To find missed lines in the html coverage reporter, you have to scroll down and find the lines in red. There is no easy way to find the first missed line -- you have to scroll down
gcov solves this by writing ##### rather than 0 for lines that are never hit, which is a good solution (then I can search for "#####" in the browser and find the misses quickly)
Alternatively, the page could be designed so that there are links in the overview area that jump to the missing lines/blocks.
The text was updated successfully, but these errors were encountered:
To find missed lines in the html coverage reporter, you have to scroll down and find the lines in red. There is no easy way to find the first missed line -- you have to scroll down
gcov solves this by writing
#####
rather than0
for lines that are never hit, which is a good solution (then I can search for "#####" in the browser and find the misses quickly)Alternatively, the page could be designed so that there are links in the overview area that jump to the missing lines/blocks.
The text was updated successfully, but these errors were encountered: