Mockito 错误不适用于参数(无效)
Mockito为我正在嘲笑的课程抛出错误,不知道为什么。"The method when(T) in the type Stubber is not applicable for the arguments (void)"
有问题的代码是:
Mockito.when(mockObject.myMethod(Mockito.any(MyExecutionContext.class))).thenReturn(value);
我知道有人问过类似的问题,但如果有人可以解释这个问题的解决方案或为我指出正确的方向,我将不胜感激。