最佳答案
假设我有这样一个对象 objectDemo
,它调用具有2个参数 String
和 null
的方法 objectDemoMethod
。现在我想和 Mockito 验证一下这个方法是否被调用:
objectDemo.objectDemoMethod("SAMPLE_STRING", null);
我这样写道:
Mockito.verify(objectDemo, Mockito.times(1)).objectDemoMethod(Matchers.any(String.class), null);
但它给出了一个错误:
对空值使用参数匹配器无效。
还有其他传递 null
值的方法吗?