Could not initialize plugin: interface org.mockito.plugins.MockMaker

后端 未结 25 2196
走了就别回头了
走了就别回头了 2020-12-29 01:01

I\'m getting following exception once tests is started:

    Testcase: treeCtorArgumentTest(com.xythos.client.drive.cachedtree.CachedTreeTest):  Caused an ERR         


        
25条回答
  •  既然无缘
    2020-12-29 01:30

    In my case, after removing mockito-core, the test worked!

    
        org.mockito
        mockito-core
        ${mockito.version}
        test
    
    

    My version is here, and JDK is 1.8.0_121.

    
        2.0.7
        2.8.9
    
    

    Now my dependencies are:

    • powermock-api-mockito2
    • powermock-module-junit4

提交回复
热议问题