Question #20623

Write jUnit tests for a given method to achieve a) 100% code coverage and b) 100%
paths coverage. The aMethod should return (a+b) * a if a > 0 and b otherwise.

public int aMethod(int a, int b){
int result = 0;
if (a > 0){
result = a;
}
result += b;
if (a > 0){
result *= a;
}
return result;
}

Expert's answer

Unfortunately, your question requires a lot of work and cannot be done for free.
Submit it with all requirements as an assignment to our control panel and we'll assist you.

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS