Mockito 1.8.1引入了anyVararg()匹配器:
when(a.b(anyInt(), anyInt(), Matchers.<String>anyVararg())).thenReturn(b);
另请参阅历史记录:https : //pre.google.com/archive/p/mockito/issues/62
弃用后编辑新语法:
when(a.b(anyInt(), anyInt(), ArgumentMatchers.<String>any())).thenReturn(b);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)