Complete the code to identify the type of white-box testing that checks every possible path in a program.
The testing technique that ensures every possible path is tested is called [1] testing.Path testing is a white-box technique that tests all possible execution paths in the code to find errors.
Complete the code to name the white-box testing technique that checks each decision point for true and false outcomes.
The white-box testing technique that tests each decision for both true and false outcomes is called [1] coverage.
Decision coverage ensures that every decision in the code is tested for both true and false outcomes.
Fix the error in the description of a white-box testing technique that checks each executable line.
The technique that tests every executable line in the code is called [1] coverage.
Statement coverage tests every executable line to ensure all code is run at least once.
Fill both blanks to complete the description of a white-box testing technique that tests all combinations of conditions in decisions.
The [1] coverage technique tests all combinations of [2] in decision statements.
Condition coverage tests all possible combinations of conditions within decision statements to ensure thorough testing.
Fill all three blanks to complete the code snippet describing a white-box testing technique that measures the percentage of code executed.
Code coverage tools measure [1] coverage by checking which [2] or [3] have been executed during tests.
Statement coverage measures how many lines and branches of code have been executed during testing to find untested parts.