Skip to content

Instantly share code, notes, and snippets.

@zwliew
Last active February 27, 2019 02:57
Show Gist options
  • Save zwliew/2646de684f0354e1f503b107dc02b059 to your computer and use it in GitHub Desktop.
Save zwliew/2646de684f0354e1f503b107dc02b059 to your computer and use it in GitHub Desktop.
class IntroductionActivityTest {
// Rest of the class
@Test
public void onClickButton_showsMainActivity() {
onView(withId(R.id.single_intro_end_button)).perform(click());
intended(hasComponent(MainActivity.class.getName()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment