Skip to content

Instantly share code, notes, and snippets.

@maskaravivek
Created May 17, 2018 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maskaravivek/03df0c9bb9d6156e4e98fa70ad7561f1 to your computer and use it in GitHub Desktop.
Save maskaravivek/03df0c9bb9d6156e4e98fa70ad7561f1 to your computer and use it in GitHub Desktop.
@RunWith(AndroidJUnit4::class)
class MainActivityTest {
@Rule @JvmField var activityActivityTestRule = ActivityTestRule(MainActivity::class.java)
@Test
fun setUserName() {
onView(withId(R.id.name_field)).perform(typeText("Test"))
onView(withId(R.id.set_user_name)).perform(click())
onView(withText("Hello Test!")).check(matches(isDisplayed()))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment