Multiple choice technology testing

Which testing ensures that all part of the code is executed once?

  1. Statement Coverage

  2. Path Coverage

  3. Branch Coverage

  4. None of the Above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Statement coverage is a white-box testing metric that ensures every executable statement in the code is executed at least once during testing. It's the most basic form of code coverage, measuring what percentage of statements have been executed by the test suite.