遇到要点:https://gist.github.com/chemouna/00b10369eb1d5b00401b之后,我注意到它正在使用Google Truth库:https://google.github.io/truth/。因此,我首先按照在Android Studio中的build.gradle文件中添加库的过程进行操作:

buildscript {
  repositories.mavenLocal()
}

dependencies {
  testImplementation "com.google.truth:truth:0.40"
}

但是,当我想为我的断言java类的Truth入口点添加静态导入时:
import static com.google.common.truth.Truth.assertThat;
import static com.google.common.truth.Truth.assertWithMessage;

我收到符号Truth无法解析的错误。
我试图重建我的项目并实现此处所述的解决方案:AndroidTestCompile dependencies not recognized in the imports,主要运行以下gradle任务:
  • ./gradlew应用程序:依赖项
  • 组装AndroidTest

  • 但问题仍然存在。

    有什么帮助吗?

    我是否应该在build.gradle文件中实际添加这些行? :
     buildscript {
      repositories.mavenLocal()
    }
    

    如果我已经有这些:
    repositories {
       mavenCentral()
       jcenter()
       google()
    }
    

    最佳答案



    注意

    您应该致电 androidTestImplementation

    androidTestImplementation "com.google.truth:truth::0.40"
    

    阅读 Truth - Fluent assertions for Java

    10-07 23:18