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 |
@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 |
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 |
public CountingIdlingResourceListenerImpl(final String idlingResourceName) { mCountingIdlingResource = new CountingIdlingResource(idlingResourceName); }
Example #4
Source File: CountingIdlingResourceListenerImpl.java From CleanGUITestArchitecture with MIT License | 4 votes |
public CountingIdlingResource getCountingIdlingResource() { return mCountingIdlingResource; }