如何避免用EasyMock模拟接口默认方法?



我有一个具有默认方法的接口。这些引用了非默认方法,我只想模拟这些方法。

的例子:

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);
}

相关内容

  • 没有找到相关文章

最新更新