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

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

    For android development you need to import a couple of things:

     dependencies {
       testCompile "org.mockito:mockito-core:+"
       androidTestCompile "org.mockito:mockito-android:+"
     }
    

    could not find any reference of this but this is the only one that has worked for me.

提交回复
热议问题