Search Results

0
votes

How can I easily mock out a static method in Java (jUnit4)

You could use AspectJ to intercept the static method call and do something useful for your test. …