Home
last modified time | relevance | path

Searched refs:callAsync (Results 1 – 4 of 4) 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.java74 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()
DDelayedExecution.java26 public void callAsync(long delay, TimeUnit timeUnit, Runnable r) { in callAsync() method in DelayedExecution
/external/llvm/include/llvm/ExecutionEngine/Orc/
DRPCUtils.h447 Expected<AsyncCallResult<Func>> callAsync(ChannelT &C, in callAsync() function