0
21kviews
A program reads three numbers A,B,C with range[1,50] and print the largest number.Design test cases for this program using equivalence class testing techniques.
1 Answer
2
2.4kviews

First we partition the domain of input as valid input values and invalid values. so we get following classes -

$I_1$ = { <A,B,C> : 1 ≤ A ≤ 50 }

$I_2$ = { <A,B,C> : 1 ≤ B ≤ 50}

$I_3$ = { <A,B,C> : 1 ≤ C ≤ …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.