QuestionQ39
Test Analysis and Test DesignA credit risk scoring system accepts two integer inputs, L and E, representing credit scores calculated by two independent systems. The system assesses credit risk using the following business logic:
IF L >= 50 OR E >= 50 THEN the risk is high
IF L <= 49 AND E <= 49 THEN the risk is low

The figure displays a section of the input domain. Points in the gray area are part of the “high risk” equivalence partition, and points outside it are part of the “low risk” equivalence partition. The lines indicate the closed boundary of the “high risk” equivalence partition.
You use domain-based testing to verify the correct implementation of the above requirement. The test set contains the five black points in the figure: (L=48, E=48), (L=49, E=49), (L=49, E=50), (L=50, E=49), and (L=54, E=53).
What level of RELIABLE domain coverage does this set of test points achieve?
- A 50%
- B 62.5%
- C 87.5%
- D 100%
Community Discussion