I have a class with the following structure
public class MyClass{
private MyClass(){
}
public static MyClass getInstance(){
return new MyClass();
}
//some instance method.
}
Using powermock I'm able to mock "MyClass" as follows.
PowerMock.mockStaticClass(Myclass.class);
But I'm unable to return any valid object when someone calls getInstance() on MyClass. i.e., How dO I fill the following blank.
Mock.when(MyClass.getInstance()).thenReturn(<What do I return here>);
return value is needed because I need to stub/verify some instance methods.
Can someone help me figure out this?
PowerMock.mockClass? – Jon Skeet Sep 16 '11 at 6:09MyClass.getInstace()method and made instance method calls from the object returned bygetInstance().In the test but I didn't stubgetInstance().I just stubbed instance methods. What happens when the method under test actually callsMyClass.getInstance()?? – Ganesh P Sep 16 '11 at 8:40