Skip to content

Instantly share code, notes, and snippets.

@GunnarKarlsson
GunnarKarlsson / ActivityStart.java
Last active August 29, 2015 14:06 — forked from colabug/ActivityStart.java
Robolectric snippets
@Test
public void buttonClickShouldStartNewActivity() throws Exception
{
Button button = activity.findViewById( R.id.next_screen_button );
button.performClick();
Intent intent = NewActivity.createIntent( activity );
assertThat( activity, new StartedMatcher( intent ) );
}