Skip to content

Instantly share code, notes, and snippets.

@ZeGerm4n
ZeGerm4n / Wait.java
Created March 27, 2018 11:50 — forked from sdsantos/Wait.java
Wait for condition helper for testing
public class Wait {
private static final int CHECK_INTERVAL = 100;
private static final int TIMEOUT = 10000;
public interface Condition {
boolean check();
}
private Condition mCondition;