During a project review, it's revealed that certain parts of the codebase have been overlooked during testing. Which white-box testing metric might help identify these areas?

  • Cyclomatic Complexity
  • Load Testing
  • Reliability Testing
  • Response Time
Cyclomatic Complexity is a white-box testing metric used to determine the complexity of a program. It calculates the number of linearly independent paths through a program's source code. A higher complexity score can indicate areas of the code that might be riskier or overlooked during testing, thus requiring more thorough testing.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *