This is what I'm doing:

PowerMockito.mockStatic(Foo.class);
PowerMockito.whenNew(Foo.class).withNoArguments().thenReturn(null);
Foo foo1 = new Foo();
assert foo1 == null; // works fine
//...
// now I want PowerMockito to stop mocking the call
Foo foo2 = new Foo(); 
assert foo2 != null;

I can't find PowerMockito.reset() method.. What is a workaround?

link|improve this question

1  
It's not possible at the moment: code.google.com/p/powermock/issues/detail?id=281 – yegor256 Oct 4 '11 at 6:46
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.