0% found this document useful (0 votes)
9 views2 pages

Examples of Whitebox Techniques

Uploaded by

mustafa qayyum
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views2 pages

Examples of Whitebox Techniques

Uploaded by

mustafa qayyum
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Branch Coverage

 Focus: Ensures every decision point (like if/else) is tested for both true and false
outcomes.
 Example: A tax calculation program checks if the customer is eligible for a discount:
o Branch 1: If eligible, apply the discount.
o Branch 2: If not eligible, skip the discount.

Test cases:

o Customer eligible for a discount.


o Customer not eligible for a discount.

3. Path Coverage

 Focus: Ensures all possible paths in the program’s flow are tested.
 Example: A login system has the following paths:
1. Correct username and password → Login successful.
2. Correct username but incorrect password → Login failed.
3. Incorrect username → Login failed.
4. No input provided → Error message.

Path coverage ensures test cases exist for all these scenarios.

4. Loop Testing

 Focus: Ensures loops are tested for zero, one, and multiple iterations.
 Example: A report generator processes data entries in a loop:
o Zero entries: Verify the program handles no data gracefully.
o One entry: Ensure the loop processes a single record.
o Multiple entries: Confirm all records are processed correctly.

5. Condition Coverage

 Focus: Tests all possible outcomes of each condition in a decision.


 Example: A membership system evaluates:
o Membership active?
o Payment up-to-date?

Test cases:
o Active membership with up-to-date payment.
o Active membership but payment overdue.
o Inactive membership.

You might also like