Consider the following pseudo code:
1 Begin
2 Read Time
3 If Time < 12 Then
4 Print(Time, "am")
5 Endif
6 If Time > 12 Then
7 Print(Time 12, "pm")
8 Endif
9 If Time = 12 Then
10 Print (Time, "noon")
11 Endif
12 End
How many test cases are needed to achieve 100 per cent decision coverage?
The three decisions are in sequence and the conditions are all mutually exclusive (if any one is true the others must be false). Hence a test case that makes the first decision true will make the second and third decisions false and so on.
So test case 1 (say Time = 6) would exercise the path True, False, False, test case 2 (say Time = 15) would exercise the path False, True, False. Test case 3 would have to be Time = 12. This combination achieves 100 per cent decision coverage because each decision has been exercised through its true and its false outcomes.
Tyisha
7 months agoArthur
7 months agoKiley
7 months agoLouann
7 months agoEliseo
8 months agoMarget
8 months agoAdelaide
8 months agoLing
8 months agoLenna
8 months agoDiego
9 months agoBasilia
9 months agoKatie
9 months agoFernanda
9 months agoAracelis
11 months agoGregg
10 months agoClaribel
10 months agoRene
11 months agoWillie
10 months agoVictor
10 months agoAriel
11 months agoMargurite
11 months agoLeeann
11 months agoLoreta
10 months agoJustine
10 months agoLaurel
11 months agoPearly
11 months agoEmerson
11 months agoJoaquin
1 year agoLauran
1 year agoAlease
1 year ago