WrongTypeOfReturnValue

WrongTypeOfReturnValue

实现类中的逻辑如下所示,我尝试编写一个模拟并以WrongTypeOfReturnValue的形式获取异常

  /**
     * update audit and courier log when Provider sign the document.
     * @param cmsCourierInfo
     * @param documentInfo
     * @throws Exception
     */
    public boolean doAuditProviderESignCompletion(CMSCourierInfo cmsCourierInfo, DocumentInfo documentInfo) throws  Exception {

        String signerTitle = "";
        List<ParticipantInfo> participantInfos = documentInfo.getParticipants().getParticipantInfo();
        //First participant is Provider
        ParticipantInfo participantInfo = participantInfos.get(0);

        if(StringUtils.isNotEmpty(participantInfo.getTitle())){
            signerTitle = participantInfo.getTitle();
        }
        //update audit log with provider signed information
        CMSCourierContractManager.signContract(cmsCourierInfo.getGuidString(), participantInfo.getName(), signerTitle, null);

        //update audit log when document sent to Internal Signer
        return doAuditSentForInternalSigner(cmsCourierInfo.getDocumentKey(), documentInfo);
    }

测试
   @Test
   public void testUpdateContractStatus() throws Exception{

        String documentKey = "TestKey";
        cmsCourierInfo = mock(CMSCourierInfo.class);
        when(cmsFactoryManager.findCourier(anyString())).thenReturn(cmsCourierInfo);
        EchoSignDocumentServiceImpl echoSignDocumentService = spy(documentService);
        when(echoSignDocumentService.updateContractStatus(anyString())).thenReturn(true);

        doThrow(new RuntimeException()).when(echoSignDocumentService).updateContractStatus(anyString());
        boolean status = echoSignDocumentService.updateContractStatus(documentKey);
        Assert.assertEquals(true, status);
    }

我得到的错误是
org.mockito.exceptions.misusing.WrongTypeOfReturnValue:
Boolean cannot be returned by findCourier()
findCourier() should return CMSCourierInfo
***

If you're unsure why you're getting above error read on.
Due to the nature of the syntax above problem might occur because:
1. This exception *might* occur in wrongly written multi-threaded tests.
   Please refer to Mockito FAQ on limitations of concurrency testing.
2. A spy is stubbed using when(spy.foo()).then() syntax. It is safer to stub spies -
   - with doReturn|Throw() family of methods. More in javadocs for Mockito.spy() method.


at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)

一些输入将有很大帮助

最佳答案

我无法解释您遇到的具体错误(我可能不得不看更多代码)。但是测试中肯定存在编码错误。在调用updateContractStatus()之前,只要告诉此方法使用任何字符串值,就告诉该模拟方法引发异常。因此,您将永远不会获得分配的返回值,也永远不会到达assert语句。

另外,由于我看不到我正在猜测的所有代码,但是根据已发布的错误帮助消息,您可以尝试将间谍类的桩号更改为以下形式:

doReturn(true).when(echoSignDocumentService).updateContractStatus(anyString());

关于java - Mockito抛出WrongTypeOfReturnValue,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26409731/

10-08 21:16