Home
last modified time | relevance | path

Searched refs:runAfter (Results 1 – 5 of 5) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/verification/
DVerificationWithAfterTest.java52 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()
90 async.runAfter(80, 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()
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()
125 async.runAfter(10, callMock('c')); in should_verify_with_at_least()
126 async.runAfter(50, callMock('c')); in should_verify_with_at_least()
[all …]
/external/mockito/src/test/java/org/mockitoutil/async/
DAsyncTestingTest.java34 async.runAfter(200, new Runnable() { in sanity_test()
DAsyncTesting.java31 public void runAfter(final int delayMillis, final Runnable runnable) { in runAfter() method in AsyncTesting
/external/testng/kobalt/src/
DBuild.kt53 @Task(name = "createVersion", runBefore = arrayOf("compile"), runAfter = arrayOf("clean"), descript…