This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 ) ); | |
} |