public void someMethod() throws Exception {
// null
when(request.getParameter("abc")).thenReturn(null);
try {
abc.manageIncome(request, response, nancy, null);
fail();
} catch(IllegalArgumentException ex) {}
verify(nancy.manageIncome(request, response, nancy, "abc"));
}
我收到以下错误:java.lang.AssertionError
。
如何解决?我正在使用 Mockito。