Skip to content

Instantly share code, notes, and snippets.

@jooyunghan
Created July 24, 2011 03:01
Show Gist options
  • Save jooyunghan/1102168 to your computer and use it in GitHub Desktop.
Save jooyunghan/1102168 to your computer and use it in GitHub Desktop.
Android Testing Posts
public void testOnButtonClick_StartSettings() throws Exception {
AlarmActivity activity = getActivity();
activity.onAddAlarm();
Intent intent = getStartedActivityIntent();
assertEquals(SettingsActivity.class.getCanonicalName(),
intent.getComponent().getClassName());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment