Created
July 25, 2014 07:23
-
-
Save skyisle/c9e5b0a43a4b4313ac19 to your computer and use it in GitHub Desktop.
espresso static import
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 static com.google.android.apps.common.testing.ui.espresso.Espresso.onData; | |
import static com.google.android.apps.common.testing.ui.espresso.Espresso.onView; | |
import static com.google.android.apps.common.testing.ui.espresso.Espresso.pressBack; | |
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.click; | |
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.closeSoftKeyboard; | |
import static com.google.android.apps.common.testing.ui.espresso.action.ViewActions.typeText; | |
import static com.google.android.apps.common.testing.ui.espresso.assertion.ViewAssertions.matches; | |
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withId; | |
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.withText; | |
import static com.google.android.apps.common.testing.ui.espresso.matcher.ViewMatchers.isEnabled; | |
import static org.hamcrest.Matchers.allOf; | |
import static org.hamcrest.Matchers.containsString; | |
import static org.hamcrest.Matchers.instanceOf; | |
import static org.hamcrest.Matchers.is; | |
import static org.hamcrest.Matchers.not; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment