I'm trying to use PowerMock as a library in another application. Is there a way to use it to mock a static method call without using annotations (I'm in Clojure which doesn't really do annotations)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

According to powermock support and this blog, I guess there is no way to avoid annotations in test. I guess we need the @PrepareForTest(StaticClass.class) however. So I believe it is not possible to avoid @PrepareForTest atleast. May be I am wrong, but just thought of sharing what I found.

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.