Lines Matching refs:ignored
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) { in expectAndReturn() argument
471 public void expectAndReturn(int ignored, int value) { in expectAndReturn() argument
472 this.expectAndReturn((Object) ignored, (Object) value); in expectAndReturn()
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() argument
494 public void expectAndReturn(int ignored, int value, Range range) { in expectAndReturn() argument
495 this.expectAndReturn((Object) ignored, (Object) value, range); in expectAndReturn()
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() argument
515 public void expectAndReturn(int ignored, int value, int count) { in expectAndReturn() argument
516 this.expectAndReturn((Object) ignored, (Object) value, count); in expectAndReturn()
532 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn() argument
537 public void expectAndReturn(int ignored, int value, int min, int max) { in expectAndReturn() argument
538 this.expectAndReturn((Object) ignored, (Object) value, min, max); in expectAndReturn()
549 public void expectAndThrow(Object ignored, Throwable throwable) { in expectAndThrow() argument
550 EasyMock.expect(ignored).andThrow(throwable).once(); in expectAndThrow()
563 public void expectAndThrow(Object ignored, Throwable throwable, Range range) { in expectAndThrow() argument
564 IExpectationSetters<Object> setter = EasyMock.expect(ignored).andThrow( in expectAndThrow()
579 public void expectAndThrow(Object ignored, Throwable throwable, int count) { in expectAndThrow() argument
580 expect(ignored).andThrow(throwable).times(count); in expectAndThrow()
594 public void expectAndThrow(Object ignored, Throwable throwable, int min, in expectAndThrow() argument
596 expect(ignored).andThrow(throwable).times(min, max); in expectAndThrow()
610 public <V1, V2 extends V1> void expectAndDefaultReturn(V1 ignored, V2 value) { in expectAndDefaultReturn() argument
623 public void expectAndDefaultThrow(Object ignored, Throwable throwable) { in expectAndDefaultThrow() argument