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

后端 未结 25 2222
走了就别回头了
走了就别回头了 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:23

    I had the same exception when switch to Java 10 and Spring Boot 2. This dependency combination worked for me:

        
            org.mockito
            mockito-all
            2.0.2-beta
            test
        
        
            net.bytebuddy
            byte-buddy
            1.8.16
        
        
            net.bytebuddy
            byte-buddy-agent
            1.8.16
            test
        
    

提交回复
热议问题