Skip to content

Instantly share code, notes, and snippets.

@nottyo
Created June 2, 2017 02:48
Show Gist options
  • Save nottyo/291951941d05b76ff40ddb2170516c6e to your computer and use it in GitHub Desktop.
Save nottyo/291951941d05b76ff40ddb2170516c6e to your computer and use it in GitHub Desktop.
import android.support.test.espresso.idling.CountingIdlingResource;
public class EspressoIdlingResource {
private static final String RESOURCE = "GLOBAL";
private static final CountingIdlingResource countingIdlingResource = new CountingIdlingResource(RESOURCE);
public static CountingIdlingResource getCountingIdlingResource() {
return countingIdlingResource;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment