使用 Mockito 匹配对象数组
我正在尝试为一个获取 Request 对象数组的方法设置一个 mock:
client.batchCall(Request[])
我尝试了这两种变体:
when(clientMock.batchCall(any(Request[].class))).thenReturn(result);
...
verify(clientMock).batchCall(any(Request[].class));
和
when(clientMock.batchCall((Request[])anyObject())).thenReturn(result);
...
verify(clientMock).batchCall((Request[])anyObject());
但我可以看出这些模拟没有被调用。
它们都会导致以下错误:
Argument(s) are different! Wanted:
clientMock.batchCall(
<any>
);
-> at com.my.pkg.MyUnitTest.call_test(MyUnitTest.java:95)
Actual invocation has different arguments:
clientMock.batchCall(
{Request id:123},
{Request id:456}
);
为什么匹配器与数组不匹配?是否有我需要使用的特殊匹配器来匹配对象数组?我能找到的最接近的东西是Addorments.aryEq(),但这需要我指定数组的确切内容,我宁愿不这样做。