A code coverage monitor measures the extent to which the source code of a program is executed during testing. The primary output from a code coverage monitor is an indication of which lines of code, branches, or paths have been executed. This helps in identifying untested parts of a codebase, ensuring more comprehensive testing, and improving overall software quality.
[References:, "Effective Software Testing: 50 Specific Ways to Improve Your Testing" by Elfriede Dustin, IEEE Standard 829-2008 for Software and System Test Documentation, , ]
Submit