Tagged Questions
0
votes
5answers
68 views
Simple equation fails unit test
I have method that takes 2 integers as arguments and returns:
public int method(int a, int b){
return Math.round((Math.abs(a-b)/3) - (Math.min(a,b)-1500)/10)
}
I have created unit test, which ...