It is easy to mock an interface method which is implemented by some class but if there is a class and having a static method than how we can mock it with the help of easymock??
supose the is a class A and having a void retrurned method as public static void methodA(some args..){}
class A {
public static void methodA(//some args..){
//some logic
}
}
How we can mock A's method methodA with the help of EasyMock
As mystarrocks mentioned in the comment, you can mock static methods using PowerMock, even you can test final class/method and private methods too!
From the documentation:
For example:
Then you can mock this static method using:
Check Mocking static methods for the complete example.