Skip to content

Instantly share code, notes, and snippets.

@igorwojda
Created August 2, 2017 08:33
Show Gist options
  • Save igorwojda/7d5df1a5466daf98587aaff1d975a021 to your computer and use it in GitHub Desktop.
Save igorwojda/7d5df1a5466daf98587aaff1d975a021 to your computer and use it in GitHub Desktop.
Java JUnit Test when_take_view_register_event_bus
@Test
public void when_take_view_register_event_bus() {
// given
profilePresenter.takeView(mockView);
// then
then(mockEventBus).should().register(profilePresenter);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment