Created
June 2, 2017 02:48
-
-
Save nottyo/291951941d05b76ff40ddb2170516c6e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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