18.7k views
1 vote
Consider the following decision table for the portion of an online airline reservation system that allows frequent flyers to redeem points for reward travel:

Condition 1 2 3
Account/password okay N Y Y
Sufficient points - N Y
Action
Show flight history N Y Y
Allow reward travel N N Y
Suppose that there are two equivalence partitions for the condition where "Account/password okay" is not true, one where the account is invalid and another where the account is valid, but the password is invalid. Suppose that there is only one equivalence partition corresponding to the condition where "Account/password okay" is true, where both the account and password are valid.
If you want to design tests to cover the equivalence partitions for "Account/password okay" and also for this portion of the decision table, what is the minimum number of tests required?
A. 2
B. 3
C. 4
D. 9

User Suvekshya
by
7.9k points

1 Answer

1 vote

Final answer:

The minimum number of tests required to cover the equivalence partitions for "Account/password okay" and this portion of the decision table is 3.

Step-by-step explanation:

To cover the equivalence partitions for "Account/password okay" and this portion of the decision table, the minimum number of tests required is 3 (option B).

The decision table has three conditions: "Account/password okay", "Sufficient points", and "Action". For the condition "Account/password okay", there are two equivalence partitions: one for an invalid account and another for a valid account with an invalid password. There is one equivalence partition for a valid account and password.

Based on these partitions, we will need to test the following scenarios: Invalid account, invalid password; Valid account, invalid password; and Valid account, valid password.

User Tony Baby
by
7.5k points