Skip to content

Instantly share code, notes, and snippets.

@xfumihiro
Created March 19, 2016 23:21
Show Gist options
  • Save xfumihiro/19789ab18b6a2b634a07 to your computer and use it in GitHub Desktop.
Save xfumihiro/19789ab18b6a2b634a07 to your computer and use it in GitHub Desktop.
Sample of Unit Testing a Presenter
@Test public void testShowOnLoad() {
mainPresenter = new Main.Presenter();
mainPresenter.takeView(mockMainView);
verify(mockMainView).show(anyString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment