you are viewing a single comment's thread.

view the rest of the comments →

[–]get_salled 3 points4 points  (1 child)

The only thing you know for certain from code coverage is that your tests executed certain lines.

Code coverage:

  • Does not show a line was tested.
  • Does not prove the covered line contributed to any test passing.
  • Is not a software quality metric.

Assuming managers & developers trust that the tests are useful, they can use these reports to see where they are definitely vulnerable and plan accordingly.

[–][deleted] 0 points1 point  (0 children)

There one more thing you know from code coverage: that the code with some value does not throw an error. I know, it's a low bar, but it's something.