What is the minimum number of tests required to make sure


Consider the function

def fun(int x, int y, int z, int w) { 
if (z > w) {
     print(9)
} else {
     print(8)
};
if (x > y) {
     print(7)
} else {
     print(6)
}
}

What is the minimum number of tests required to make sure that every part of the program is tested?

Solution Preview :

Prepared by a verified Expert
Software Engineering: What is the minimum number of tests required to make sure
Reference No:- TGS02511345

Now Priced at $10 (50% Discount)

Recommended (93%)

Rated (4.5/5)