在为官方文档中的单元测试创建类后,我导入了com.google.common.truth.Truth.assertThat和org.junit.Test库,但 android studio 无法获取它并显示错误“无法解析符号“真相” ”和“无法解析符号“测试””。
在搜索了解决此问题的方法后,我在 StackOverflow 上遇到了一个类似问题的问题。我做了那里推荐的所有事情,但我仍然无法导入这些类。
我的项目 build.gradle
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
我的项目模块 build.gradle
dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation 'com.google.truth:truth:1.1.3'
}
我的测试班
import com.google.common.truth.Truth.assertThat;
import org.junit.Test;