0

I feel like I've heard the phrase "Automated Test Coverage" but not really sure what it means. I am wondering if there is a way to do some sort of program analysis that will tell you which parts of your code are untested. In this way, figure out what is left to test to build a robust system.

1 Answers1

4

The answer depends on your programming language, but what are are looking for is a code coverage tool Just run it on your tests.

https://stackify.com/code-coverage-tools/

Lewis Pringle
  • 2,975
  • 1
  • 11
  • 15