In white-box testing, which technique involves ensuring that every decision point (true and false) has been executed at least once?
- Cyclomatic Complexity
- Decision Coverage
- Path Coverage
- Statement Coverage
Decision Coverage in white-box testing ensures that each decision point or branch has been executed for both 'true' and 'false' conditions. It is more robust than simple statement coverage because it ensures that each decision leads the control flow in both directions.
Loading...
Related Quiz
- What is the primary difference between load testing and stress testing?
- A proactive approach to identifying future risks that could emerge due to changes in a project is termed as _______ risk identification.
- Why is modular scripting considered beneficial in test automation?
- In test planning, which document provides a detailed view of the testing objectives, resources required, and the testing schedule?
- _______ testing is beneficial when there are frequent code changes, and immediate feedback on the changes is needed.