Mockito 错误不适用于参数(无效)

2022-09-02 03:01:50

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);

我知道有人问过类似的问题,但如果有人可以解释这个问题的解决方案或为我指出正确的方向,我将不胜感激。


答案 1

溶液:

Mockito.doReturn(value)
       .when(mockObject)
       .myMethod(Mockito.any(MyExecutionContext‌​.class))

答案 2

您正在模拟的方法(在上面的示例中:mockObject.myMethod)的返回类型很可能是VOID。

如果该方法的返回类型为“void”,则改用以下格式:

doThrow(new PersistenceException("Exception occured")).when(mockObject).myMethod(any());

// Note that we can never return a value when return type is void.

推荐