kotlin library for both test
and android tests
, unit tests and UI tests.
If I write the bellow two lines as part of build.gradle it works fine.
my question is, is this the right way to add the library to use in both test and android tests
build.gradle
androidTestImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
Thank you for your valuable suggestions
thanks R