我有一个函数,我在其中创建一个来自库的类的对象。代码是
SessionCodeChecks checks = new SessionCodeChecks(realmModel, session.getContext().getUri(), request, clientConnection, session, event, null, code, null, clientId, tabId, LoginActionsService.AUTHENTICATE_PATH);
checks.initialVerify();
sessiondechecks类来自我需要模拟的库。我正在监视类对象,但获取InvalidUseofMatcherException我的测试代码是
SessionCodeChecks checks = Mockito.spy(new SessionCodeChecks(any(), any(), any(), any(), any(), any(), any(), anyString(), anyString(), anyString(), anyString(), anyString()));
doNothing().when(checks).initialVerify();
我怎样才能做到呢?
暂无答案!
目前还没有任何答案,快来回答吧!