• Home
  • Raw
  • Download

Lines Matching refs:throwable

166     public void setThrowable(Throwable throwable) {  in setThrowable()  argument
169 .andThrow(throwable).once(); in setThrowable()
223 public void setThrowable(Throwable throwable, int times) { in setThrowable() argument
226 .andThrow(throwable).times(times); in setThrowable()
298 public void setDefaultThrowable(Throwable throwable) { in setDefaultThrowable() argument
299 ctrl.setLegacyDefaultThrowable(throwable); in setDefaultThrowable()
376 public void setThrowable(Throwable throwable, int minCount, int maxCount) { in setThrowable() argument
379 .andThrow(throwable).times(minCount, maxCount); in setThrowable()
382 public void setThrowable(Throwable throwable, Range range) { in setThrowable() argument
385 .andThrow(throwable); in setThrowable()
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
565 throwable); 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()
623 public void expectAndDefaultThrow(Object ignored, Throwable throwable) { in expectAndDefaultThrow() argument
626 .andStubThrow(throwable); in expectAndDefaultThrow()