Let's say we have an interface which has two methods:
public interface MyInterface {
public SomeType first();
public SomeType second();
}
This interface is implemented by MyInterfaceImpl. Inside the implementation, first() calls second() to retrieve some results.
I want to build a unit test which would assert things coming out of first() based on what comes out of second(), similar to:
1 public class MyInterfaceTest {
2 private MyInterface impl = new MyInterfaceImpl();
4 @Test
5 public void testFirst() {
6 // modify behaviour of .second()
7 impl.first();
8 assertSomething(...);
10 // modify behaviour of .second()
11 impl.first();
12 assertSomethingElse(...);
13 }
14 }
Is there an easy way to create a mock on the line 2 so that all calls to selected methods (e.g. first()) would be invoked directly (delegated to MyInterfaceImpl) whereas some other methods (e.g. second()) replaced with mock counterparts?
This is actually very easily doable with PowerMock for static methods, but I need something similar for dynamic ones.
Solutions based on
MyInterface mock = EasyMock.createMock(MyInterface.class);
MyInterface real = new MyInterfaceImpl();
EasyMock.expect(mock.first()).andReturn(real.first()).anyTimes();
EasyMock.expect(mock.second()).andReturn(_somethingCustom_).anyTimes();
are not good enough, especially for interfaces having lots of methods (lots of boilerplate). I need the forwarding behaviour as real actually depends on other mocks.
I would expect something like this to be handled by a framework, and not by my own class. Is this achievable?