我需要从:
返回nullCookie controlCookieValue = getCookie(cookiesConfigBean.getControlCookieName());
我在做:
when(baseHandler.getCookie(any(String.class))).thenReturn(null);
但代码抛出InvalidUseOfMatchersException
。我尝试使用anyObject()
和anyString()
,但没有任何效果。 baseHandler
对象是模拟的。