Lines Matching refs:times
200 public void setVoidCallable(int times) { in setVoidCallable() argument
203 .times(times); in setVoidCallable()
223 public void setThrowable(Throwable throwable, int times) { in setThrowable() argument
226 .andThrow(throwable).times(times); in setThrowable()
242 public void setReturnValue(Object value, int times) { in setReturnValue() argument
245 .andReturn(value).times(times); in setReturnValue()
348 .times(minCount, maxCount); in setVoidCallable()
379 .andThrow(throwable).times(minCount, maxCount); in setThrowable()
408 .andReturn(value).times(minCount, maxCount); in setReturnValue()
512 EasyMock.expectLastCall().andReturn(value).times(count); in expectAndReturn()
534 EasyMock.expectLastCall().andReturn(value).times(min, max); in expectAndReturn()
580 expect(ignored).andThrow(throwable).times(count); in expectAndThrow()
596 expect(ignored).andThrow(throwable).times(min, max); in expectAndThrow()