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;
}
…
1
Expert's answer
2012-12-12T07:34:28-0500
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.
Comments
Leave a comment