問題描述
我正在使用 Mockito 編寫 Java 單元測(cè)試,我想驗(yàn)證某個(gè)方法是否是對(duì)象上調(diào)用的最后一個(gè).
I'm using Mockito to write a unit test in Java, and I'd like to verify that a certain method is the last one called on an object.
我在被測(cè)代碼中做了這樣的事情:
I'm doing something like this in the code under test:
row.setSomething(value);
row.setSomethingElse(anotherValue);
row.editABunchMoreStuff();
row.saveToDatabase();
在我的模擬中,我不關(guān)心編輯行中所有內(nèi)容的順序,但重要的是我不在保存后嘗試對(duì)其執(zhí)行更多操作它.有沒有好的方法來(lái)做到這一點(diǎn)?
In my mock, I don't care about the order in which I edit everything on the row, but it's very important that I not try to do anything more to it after I've saved it. Is there a good way to do this?
請(qǐng)注意,我不是在尋找 verifyNoMoreInteractions:它不會(huì)確認(rèn) saveToDatabase 是最后調(diào)用的東西,如果我調(diào)用行上沒有明確驗(yàn)證的任何內(nèi)容,它也會(huì)失敗.我希望能夠這樣說(shuō):
Note that I'm not looking for verifyNoMoreInteractions: it doesn't confirm that saveToDatabase is the last thing called, and it also fails if I call anything on the row that I don't explicitly verify. I'd like to be able to say something like:
verify(row).setSomething(value);
verify(row).setSomethingElse(anotherValue);
verifyTheLastThingCalledOn(row).saveToDatabase();
如果有幫助,我將從執(zhí)行此操作的 JMock 測(cè)試切換到 Mockito:
If it helps, I'm switching to Mockito from a JMock test that did this:
row.expects(once()).method("saveToDatabase").id("save");
row.expects(never()).method(ANYTHING).after("save");
推薦答案
我認(rèn)為這需要更多的自定義工作.
I think it requires more custom work.
verify(row, new LastCall()).saveToDatabase();
然后
public class LastCall implements VerificationMode {
public void verify(VerificationData data) {
List<Invocation> invocations = data.getAllInvocations();
InvocationMatcher matcher = data.getWanted();
Invocation invocation = invocations.get(invocations.size() - 1);
if (!matcher.matches(invocation)) throw new MockitoException("...");
}
}
上一個(gè)答案:
你是對(duì)的.verifyNoMoreInteractions 是您所需要的.
You are right. verifyNoMoreInteractions is what you need.
verify(row).setSomething(value);
verify(row).setSomethingElse(anotherValue);
verify(row).editABunchMoreStuff();
verify(row).saveToDatabase();
verifyNoMoreInteractions(row);
這篇關(guān)于使用 Mockito 驗(yàn)證方法后沒有調(diào)用任何內(nèi)容的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!