我的模拟对象有这个方法我要验证被调用:
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)
答案 0 :(得分:2)
这应该有效:
Mockito.any(String[][].class)