4. (30 Points) Given the following min() method as well as the possible mutations of min. provide reachability, infectio
Posted: Mon May 02, 2022 11:37 am
4. (30 Points) Given the following min() method as well as the possible mutations of min. provide reachability, infection, and propagation conditions for mutants 4, 5, and 6. public int min(int A, int B) { int minVal; minVal = A; if(B <A) { minVal = B; } return minVal; public int min(int A, int B) { int minVal; minVal = A; 41 min Val = B; if(B<A) { A2 if(B> A) { A3 if(B < minVal) { minVal = B; 44 Bomb(); 45 min Val = A; 46 minVal = failOnZero(B); } return minVal; }