Home | History | Annotate | Download | only in easymock

Lines Matching refs:result

23         public boolean matchResult(int result) {

24 return result < 0;
28 public boolean matchResult(int result) {
29 return result <= 0;
33 public boolean matchResult(int result) {
34 return result == 0;
38 public boolean matchResult(int result) {
39 return result >= 0;
43 public boolean matchResult(int result) {
44 return result > 0;
58 public abstract boolean matchResult(int result);