Mockito如何匹配String [] []参数?

时间:2014-02-07 21:17:21

标签: mocking mockito powermock

我的模拟对象有这个方法我要验证被调用:

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)

1 个答案:

答案 0 :(得分:2)

这应该有效:

Mockito.any(String[][].class)