Skip to content

Instantly share code, notes, and snippets.

@fge
Created February 14, 2015 10:35
Show Gist options
  • Save fge/c696a9dea3b0851f4bb4 to your computer and use it in GitHub Desktop.
Save fge/c696a9dea3b0851f4bb4 to your computer and use it in GitHub Desktop.
@Test
public void handleLoadFileNoFileTest()
{
when(view.chooseFile()).thenReturn(null);
presenter.handleLoadFile();
final InOrder inOrder = inOrder(factory, view);
inOrder.verify(view).chooseFile();
inOrder.verifyNoMoreInteractions();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment