Question: control flow testing. Consider the following code 1 int binsearch ( int X , int V [ ] , int n ) 2 { 3
control flow testing. Consider the following code int binsearch int X int V int n int low high mid i ; low ; high n ; for i ; i high ; i if V i V i return ; while low high mid low high ; if X V mid high mid ; else if X V mid low mid ; else return mid ; return ; This code takes as input a sorted array V of size n and an integer X if X exists in the array it will return the index of X else it will return Draw a CFG for binsearch From the CFG identify a set of entryexit paths to satisfy the complete statement coverage criterion. Identify additional paths, if necessary, to satisfy the complete branch coverage criterion. For each path identified above, derive their path predicate expressions. Solve the path predicate expressions to generate test input and compute the corresponding expected outcomes. Are all the selected paths feasible? If not, select and show that a path is infeasible, if it exists. Can you introduce two faults in the routine so that these go undetected by your test cases designed for complete branch coverage? Suggest a general way to detect the kinds of faults introduced in the previous step.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
