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?

link|improve this question

0% accept rate
Well what are you trying to do? You could create an instance of your real class, or you could create a mock. You say you're "unable to return any valid object" - what's stopping you? – Jon Skeet Sep 16 '11 at 6:02
I can't return an object because the constructor is private. – Ganesh P Sep 16 '11 at 6:06
1  
Ah, I see... but are you trying to return a mock? What happens if you try PowerMock.mockClass? – Jon Skeet Sep 16 '11 at 6:09
That worked!! Thanks a lot. – Ganesh P Sep 16 '11 at 6:44
@Jon Skeet I have a doubt about the method you suggested. In the method that I'm testing I made a call to MyClass.getInstace() method and made instance method calls from the object returned by getInstance().In the test but I didn't stub getInstance().I just stubbed instance methods. What happens when the method under test actually calls MyClass.getInstance()?? – Ganesh P Sep 16 '11 at 8:40
show 3 more comments
feedback

1 Answer

You can mock the instance as well as the static method, and make the mocked static method return a reference to the mocked instance. Something like:

MyClass mock = PowerMock.mockClass(MyClass.class);

PowerMock.mockStaticClass(MyClass.class);
Mock.when(MyClass.getInstance()).thenReturn(mock);

(I've never used PowerMock, so the syntax may be slightly wrong...)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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