Skip to content

Instantly share code, notes, and snippets.

@heitorcolangelo
Created August 4, 2016 19:14
Show Gist options
  • Save heitorcolangelo/6022d578b23d65ef77cefe967f97d701 to your computer and use it in GitHub Desktop.
Save heitorcolangelo/6022d578b23d65ef77cefe967f97d701 to your computer and use it in GitHub Desktop.
MainActivityTeste - first test
@Test
public void whenResultIsOk_shouldDisplayListWithUsers() {
server.enqueue(new MockResponse().setResponseCode(200).setBody(Mocks.SUCCESS));
mActivityRule.launchActivity(new Intent());
onView(withId(R.id.recycler_view)).check(matches(isDisplayed()));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment