java.lang.IllegalStateException: Could not initialize plugin: MockMaker

前端 未结 3 2164
再見小時候
再見小時候 2021-02-20 13:52

Trying to run instrumentation test on AS.

stuck with this Error:

java.lang.IllegalStateException: Could not initialize plugin: interface org.mocki

3条回答
  •  独厮守ぢ
    2021-02-20 14:24

    Worked:

    dependencies { 
    def mockito_version = '2.7.1' // For local unit tests on your development machine
     testCompile "org.mockito:mockito-core:$mockito_version" // For instrumentation tests on Android devices and emulators
     androidTestCompile "org.mockito:mockito-android:$mockito_version"
     }
    

    No need to comment initiMocks

提交回复
热议问题