Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码行:
when(htmlEmailSpy.setFrom(anyString())).thenReturn(null);
以下代码执行真实htmlEmailSpy.setFrom(...),但会引发异常。
htmlEmailSpy.setFrom(...)
@Spy HtmlEmail htmlEmailSpy = new HtmlEmail();
我错了什么?
我的目标 - 设置新的行为来监视对象。
我已经解决了问题:
doReturn(null).when(htmlEmailSpy).setFrom(anyString());
取自:Mockito:试图监视方法正在调用原始方法