Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 296 Bytes

File metadata and controls

12 lines (11 loc) · 296 Bytes

Simulate delay

  • Helpful in case the tested method use Handler (post, postDelayed)
Robolectric.runUiThreadTasksIncludingDelayedTasks();

Or

Robolectric.pauseMainLooper();
Robolectric.getUiThreadScheduler().advanceBy(intervalMs);
Robolectric.unPauseMainLooper();