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!