本文介绍了测试使用EasyMock调用void方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这可能吗?
我尝试使用 EasyMock.expectLastCall()。times(0);
但是EasyMock抱怨时间必须> = 1
Is this possible?I tried with EasyMock.expectLastCall().times(0);
but EasyMock complains that times must be >=1
推荐答案
我设法找到了解决方案:
I managed to come up with a solution:
expectLastCall().andAnswer(new IAnswer() {
public Object answer() {
Assert.assertFail();
return null;
}
});
这篇关于测试使用EasyMock调用void方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!