- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
用于两者的 kotlin 库 test
和 android tests
、单元测试和 UI 测试。
如果我将下面两行作为 build.gradle 的一部分编写,它可以正常工作。
我的问题是,这是添加要在测试和 android 测试中使用的库的正确方法吗
构建.gradle
androidTestImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
感谢您的宝贵建议
最佳答案
is this the right way to add the library to use in both test and android tests
androidTestImplementation
和
testImplementation
声明,即使它们都用于同一个库。
def mockLibrary = "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
// TODO other good stuff here
dependencies {
// TODO other great libraries here
// TODO OK, maybe a few not-so-great libraries too
androidTestImplementation mockLibrary
testImplementation mockLibrary
}
关于android - 如何将库添加到 testImplementation 和 androidTestImplementation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65082915/
用于两者的 kotlin 库 test和 android tests 、单元测试和 UI 测试。 如果我将下面两行作为 build.gradle 的一部分编写,它可以正常工作。 我的问题是,这是添加要
我有一个使用非标准源文件夹布局的项目,如下所示: sourceSets { androidTest { manifest.srcFile "/myproject/android
我正在学习有关 PluralSight 的旧教程:Enhancing the Android Application Experience .由于我使用的是较新版本的 IDE,因此遇到了一些问题。大多
简而言之 我无法使用以下添加的依赖项来构建最小的新 Android Studio 项目: dependencies { ... implementation 'com.google.g
我是一名优秀的程序员,十分优秀!