Statement Coverage measures how many executable statements in the code have been executed during testing. It is an important metric in assessing test effectiveness.
Key Aspects:
- Ensuring all statements are tested at least once
- Identifying untested parts of the code
- Supporting overall code quality improvement
Statement coverage helps developers understand which areas of code require additional testing efforts.
