标签: java mocking mockito
尝试使用mockito
"the method when(t) in the type mockito is not applicable for the arguments (void)"
我的代码看起来像,
when(myFun(arg1, arg2)).thenReturn(fun());
myfun不是void。我在SO中发现了一些由于myFun返回void而发生同样错误的帖子,但在我的情况下并非如此。还有其他原因可能会发生这种情况吗?
void
myFun