我有一个具有默认方法的接口。这些引用了非默认方法,我只想模拟这些方法。
的例子:
public interface InterfaceWithDefaultMethod {
public String getTestString();
public default String getCombinedString() {
return "Test" + getTestString();
}
}
我只想模仿getTestString()
EasyMock.mock(InterfaceWithDefaultMethod.class)
生成一个模拟类,其中所有方法都被模拟,即getCombinedString
没有被委托给getTestString()
。
可以通过创建接口的虚拟实现并部分模拟这个虚拟实现来解决这个问题。
private static class InterfaceMock implements InterfaceWithDefaultMethod {
@Override
public String getTestString() {
return null;
}
}
private InterfaceWithDefaultMethod testedInterface;
@Before
public void setup() {
testedInterface = createMockBuilder(InterfaceMock.class)
.addMockedMethod("getTestString")
.createMock();
resetToNice(testedInterface);
expect(testedInterface.getTestString()).andStubReturn("First");
replay(testedInterface);
}