Passcoverage
Passcoverage refers to a metric used in software development to measure the extent to which source code is executed during the execution of a set of tests. It is a type of code coverage analysis, specifically focusing on the lines of code that are "passed over" or executed by the test suite. When a test suite runs, a tool tracks which lines of the program's source code are actually run. Passcoverage is typically expressed as a percentage, indicating the proportion of executable lines of code that were executed at least once.
Higher passcoverage is generally considered desirable, as it suggests that more of the codebase has been exercised
Tools that calculate passcoverage work by instrumenting the code before execution or by analyzing execution traces.