1
我的模仿對象有這個方法我想驗證被稱爲:Mockito如何匹配String [] []參數?
void postResource(String url, int x, String[][] headers)
如何使用any()
方法來驗證是否postResource
與任何headers
參數叫什麼名字?
http = mock(Http.class);
verify(http, never()).postResource(anyString, anyInt(), ?)
更妙的是,有沒有辦法用任何參數組合來驗證方法?像
verify(http, never()).postResource(anyArguments)
是的,它的工作,謝謝! – Popcorn