Skip to content

Instantly share code, notes, and snippets.

@maskaravivek
Created May 17, 2018 18:58
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/4f4d854d29ad10e4eb88e690a236549b to your computer and use it in GitHub Desktop.
Save maskaravivek/4f4d854d29ad10e4eb88e690a236549b 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("Vivek Maskara"))
onView(withId(R.id.set_user_name)).perform(click())
onView(withText("Hello Vivek Maskara!")).check(matches(isDisplayed()))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment