Hello Everyone, I am writing the testcases to tes...
# android
m
Hello Everyone, I am writing the testcases to test the room database by mocking the database and dao instance. But i am getting Could not initialize plugin: interface org.mockito.plugins.MockMaker (alternate: null). And i don't know what is the problem, even though i have added below dependencies in app level gradle file.
Copy code
// Mockito
    testImplementation 'org.mockito:mockito-core:3.11.2'
    testImplementation 'org.mockito:mockito-inline:3.11.2'
    androidTestImplementation "org.mockito:mockito-android:3.11.2"
Does any one have idea about that?
😶 3