我的模拟对象有这个方法,我想验证被调用:
void postResource(String url, int x, String[][] headers)
如何使用 any()
方法来验证是否使用任何headers
参数调用了postResource
?
http = mock(Http.class);
verify(http, never()).postResource(anyString, anyInt(), ?)
更好的是,有没有办法只用任何参数组合来验证方法?类似的东西
verify(http, never()).postResource(anyArguments)
这应该有效:
Mockito.any(String[][].class)