Home
last modified time | relevance | path

Searched refs:callMock (Results 1 – 2 of 2) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/verification/
DVerificationWithTimeoutTest.java61 delayedExecution.callAsync(30, MILLISECONDS, callMock('c')); in shouldVerifyWithTimeout()
74 delayedExecution.callAsync(30, MILLISECONDS, callMock('c')); in shouldFailVerificationWithTimeout()
85 delayedExecution.callAsync(10, MILLISECONDS, callMock('c')); in shouldAllowMixingOtherModesWithTimeout()
86 delayedExecution.callAsync(10, MILLISECONDS, callMock('c')); in shouldAllowMixingOtherModesWithTimeout()
97 delayedExecution.callAsync(10, MILLISECONDS, callMock('c')); in shouldAllowMixingOtherModesWithTimeoutAndFail()
98 delayedExecution.callAsync(10, MILLISECONDS, callMock('c')); in shouldAllowMixingOtherModesWithTimeoutAndFail()
109 delayedExecution.callAsync(30, MILLISECONDS, callMock('c')); in shouldAllowMixingOnlyWithTimeout()
119 delayedExecution.callAsync(30, MILLISECONDS, callMock('c')); in shouldAllowMixingOnlyWithTimeoutAndFail()
137 delayedExecution.callAsync(10, MILLISECONDS, callMock('1')); in canIgnoreInvocationsWithJunit()
143 delayedExecution.callAsync(10, MILLISECONDS, callMock('2')); in canIgnoreInvocationsWithJunit()
[all …]
DVerificationAfterDelayTest.java53 private Runnable callMock = new Runnable() { field in VerificationAfterDelayTest
74 delayedExecution.callAsync(30, MILLISECONDS, callMock ); in shouldVerifyNormallyWithSpecificTimes()
83 delayedExecution.callAsync(30, MILLISECONDS, callMock ); in shouldVerifyNormallyWithAtLeast()
92 delayedExecution.callAsync(30, MILLISECONDS, callMock ); in shouldFailVerificationWithWrongTimes()
103 delayedExecution.callAsync(30, MILLISECONDS, callMock ); in shouldWaitTheFullTimeIfTheTestCouldPass()
120 delayedExecution.callAsync(30, MILLISECONDS, callMock ); in shouldStopEarlyIfTestIsDefinitelyFailed()