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/
DVerificationWithAfterTest.java36 private Runnable callMock = new Runnable() { field in VerificationWithAfterTest
52 async.runAfter(10, callMock); in should_verify_with_after()
53 async.runAfter(1000, callMock); in should_verify_with_after()
62 async.runAfter(10, callMock); in should_verify_with_after_and_fail()
63 async.runAfter(40, callMock); in should_verify_with_after_and_fail()
77 async.runAfter(10, callMock); in should_verify_with_time_x()
78 async.runAfter(50, callMock); in should_verify_with_time_x()
79 async.runAfter(600, callMock); in should_verify_with_time_x()
88 async.runAfter(10, callMock); in should_verify_with_time_x_and_fail()
89 async.runAfter(40, callMock); in should_verify_with_time_x_and_fail()
[all …]
DVerificationWithTimeoutTest.java53 async.runAfter(50, callMock('c')); in should_verify_with_timeout()
54 async.runAfter(500, callMock('c')); in should_verify_with_timeout()
64 async.runAfter(200, callMock('c')); in should_verify_with_timeout_and_fail()
80 callMock('c'); in should_verify_with_timeout_and_fail_early()
81 callMock('c'); in should_verify_with_timeout_and_fail_early()
99 async.runAfter(50, callMock('c')); in should_verify_with_times_x()
100 async.runAfter(100, callMock('c')); in should_verify_with_times_x()
101 async.runAfter(600, callMock('c')); in should_verify_with_times_x()
110 async.runAfter(10, callMock('c')); in should_verify_with_times_x_and_fail()
111 async.runAfter(200, callMock('c')); in should_verify_with_times_x_and_fail()
[all …]