android.support.test.espresso.contrib.CountingIdlingResource Java Examples

The following examples show how to use android.support.test.espresso.contrib.CountingIdlingResource. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: QuizActivity.java    From android-topeka with Apache License 2.0 4 votes vote down vote up
@SuppressWarnings("unused")
@VisibleForTesting
public CountingIdlingResource getCountingIdlingResource() {
    return mCountingIdlingResource;
}
 
Example #2
Source File: IdlingResourceBottomSheetCallback.java    From material-activity-chooser with Apache License 2.0 4 votes vote down vote up
public IdlingResourceBottomSheetCallback(BottomSheetBehavior.BottomSheetCallback wrappedCallback, CountingIdlingResource mBottomSheetIdlingResource) {
    this.mWrappedCallback = wrappedCallback;
    this.mBottomSheetIdlingResource = mBottomSheetIdlingResource;
}
 
Example #3
Source File: CountingIdlingResourceListenerImpl.java    From CleanGUITestArchitecture with MIT License 4 votes vote down vote up
public CountingIdlingResourceListenerImpl(final String idlingResourceName) {
    mCountingIdlingResource = new CountingIdlingResource(idlingResourceName);
}
 
Example #4
Source File: CountingIdlingResourceListenerImpl.java    From CleanGUITestArchitecture with MIT License 4 votes vote down vote up
public CountingIdlingResource getCountingIdlingResource() {
    return mCountingIdlingResource;
}