@Before public void setup() { MockitoAnnotations.initMocks(this); keepClick(); presenter = spy(new MyOtherPresenter()); presenter.onAttach(parent); presenter.onViewCreated(view, null); }
@Test public void testOnPause() { presenter.onPause(); verify(view).setText("Bye bye"); }
@Test public void testOnResume() { presenter.onResume(); verify(view).setText("This my other presenter!"); }