Possible Duplicate:
Using Mockito to test abstract classes

I have an abstract class with functionality I need to test. I could create simple derivative of that class with no op implementations of abstract methods, but is it possible to be done with mocking framework? I need to maintain class internal state, so I can't just call

mockedInstance = mock(ClassUnderTest.class);

I need something

mockedInstance = spy(new ClassUnderTest(...));

but apparently this is impossible to do as class is abstract.

link|improve this question

70% accept rate
3  
possible duplicate of Using Mockito to test abstract classes. See this answer. – Yishai Nov 17 '11 at 17:07
feedback

closed as exact duplicate by Yishai, John B, Paul Bellora, NikiC, ircmaxell Nov 18 '11 at 14:48

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

When I want to unit test an Abstract class I don't mock, I subclass.

borrowing code from mijer in other answer

public class MockitoTest {
    public static abstract class MyAbstractClass {
       private int state;
       public abstract int abstractMethod();

       public int method(....)
       {
        ...
       }
    }
}


class Testclass extends MyAbstractClass 
{
      public int abstractMethod()
      {
       ...
      }
 }

Then run your tests of MyAbstractClass using an instance of Testclass. you can control the implementation of the abstract methods in your local subclass.

link|improve this answer
intent is not to extend a class but use a mocking framework – misha nesterenko Nov 18 '11 at 7:59
feedback
import org.junit.Test;
import org.mockito.internal.stubbing.answers.CallsRealMethods;

import static org.mockito.Mockito.*;
import static org.junit.Assert.*;

public class MockitoTest {
    public static abstract class MyAbstractClass {
        private int state;
        public abstract int abstractMethod();
        public void method() {
            System.out.println("method. State: " + (++state));
            System.out.println("abstractMethod: " + abstractMethod());
            anotherMethod();
        }
        public void anotherMethod() {
            System.out.println("anotherMethod. State: " + (++state));
        }
    }

    @Test
    public void test() throws Exception {
        MyAbstractClass obj = mock(MyAbstractClass.class, new CallsRealMethods());
        doReturn(5).when(obj).abstractMethod();

        obj.method();

        verify(obj).abstractMethod();

        assertEquals(2, obj.state);
    }
}

-EDIT-

  1. If you need to maintain internal state of the object you have to use org.mockito.internal.util.reflection.Whitebox.setInternalState, for example:

    @Test
    public void test() throws Exception {
        MyAbstractClass obj = mock(MyAbstractClass.class, new CallsRealMethods());
        setInternalState(obj, "state", 100);
        doReturn(5).when(obj).abstractMethod();
    
        obj.method();
    
        verify(obj).abstractMethod();
        assertEquals(102, obj.state);
    }
    
  2. If you have an abstract class with a complex logic in its constructor which you would like to test, you should extend this class just for testing or refactor your class moving all the logic to some method to be tested.

link|improve this answer
What if I need to pass parameters to a constructor? – misha nesterenko Nov 17 '11 at 17:36
Answer is updated. – mijer Nov 17 '11 at 19:03
That is a bit cumbersome to set internal state this way. In real examples there could be much more variables, complex logic etc. – misha nesterenko Nov 18 '11 at 7:59
This means you should simplify/refactor your code somehow to be more easy-testable and understandable. Moreover, it's a good practice. Why do you need to call a constructor instead of testing class methods? – mijer Nov 18 '11 at 8:41
I have initialization logic in constructor that needs to be executed before to be able to test methods. – misha nesterenko Nov 18 '11 at 9:44
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.