I have a constructor:

public PodLinksActivity( PodLinksPlace place ){
   super( MFactory.getView(), place);
    // other methods
}

how can I stub the MFactory.getView() static method with PowerMock or PowerMockito (Mockito) for not making a GWTTestCase?

Thanks!

link|improve this question
feedback

1 Answer

// view you expect to pass as first super-arg
View view = mock(View.class);

// setup the MFactory class
PowerMockito.mockStatic(MFactory.class);
// mock the method you care about
PowerMockito.when(MFactory.class, "getView").thenReturn(view);

Ensure that you add the appropriate PowerMock annotations at the top of your test class:

@RunWith(PowerMockRunner.class)
@PrepareForTest(MFactory.class) 
link|improve this answer
Similarly, you could also use the stubbing API: stub(method(MFactory.class, "getView")).toReturn(view) – pickypg Apr 13 '11 at 20:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.