考虑这个代码片段: -
Whatever mock = EasyMock.createMock( Whatever.class );
mock.doSomething();
EasyMock.expectLastCall(); // <- Does this do anything?
EasyMock.replay( whatever );
expectLastCall()
这里真的有什么作用吗?在我的测试中添加或删除这一行似乎没有任何区别。
.andThrow
显然,如果您在调用中添加or.atLeastOnce()
等,这很有用。这不是我要问的。