0

I have an abstract class with static methods

public abstract class AbstractClass{
   ...

   public static void staticMethod(...) {
      ...
   }

   ...
}

then i have a class which is calling a static method from the abstract class

public void isSatisifiedBy(...){
   ...
   AbstractClass.staticMethod(...);
   ...
}

I want to completely mock out this class (or this classes method calls) so that when i am testing the isSatisifiedBy method all the code in the method runs like on live except the calls to the AbstractClass as this will be mocked out.

Is there a way of doing this using EasyMock?

Hip Hip Array
  • 4,665
  • 11
  • 49
  • 80

0 Answers0