我在导入一些Android UI测试框架时遇到问题 - 我无法弄清楚出了什么问题!
这是我的班级:
@RunWith(AndroidJUnit4.class)
@LargeTest
public class ExampleUnitTest {
@Rule
public ActivityTestRule<MainActivity> mActivityRule = new ActivityTestRule(MainActivity.class);
@Test
public void listGoesOverTheFold() {
onView(withText("Hello world!")).check(matches(isDisplayed()));
}
}
但由于某些原因我得到错误'找不到符号ActivityTestRule'和'找不到符号AndroidJUnit4'。我试图导入它们但是找不到它们。
build.gradle中的依赖项设置为:
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
androidTestCompile 'com.android.support:support-annotations:23.4.0'
androidTestCompile 'com.android.support.test:runner:0.4'
androidTestCompile 'com.android.support.test:rules:0.4'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
所以我认为我已经设置了所有依赖项 - 我一直在尝试很多东西,但没有运气。
有人有什么想法吗?
答案 0 :(得分:97)
在较新版本中添加以下内容:
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
答案 1 :(得分:48)
您可以在Android中设置两种不同类型的测试
单元测试
test/java
包testCompile
仪器测试
androidTest/java
包androidTestCompile
据我所知,您正在尝试使用Espresso编写仪器测试,但是在test/java
包中进行单元测试。在这种情况下,您需要将测试类移动到androidTest/java
包。
答案 2 :(得分:25)
添加:
androidTestImplementation 'com.android.support.test:rules:1.0.2'
解决了问题,但不要忘记将项目与gradle文件同步。只有这样,更改才会生效。
答案 3 :(得分:21)
需要这个添加依赖项
testCompile 'com.android.support.test:rules:0.5'
testCompile 'com.android.support.test:runner:0.5'
答案 4 :(得分:13)
如果您迁移到AndroidX,请使用以下方法:
androidTestImplementation 'androidx.test:rules:1.1.1'
androidTestImplementation 'androidx.test:runner:1.1.1'
答案 5 :(得分:8)
添加依赖项。
androidTestCompile 'com.android.support.test:rules:0.5'
androidTestCompile 'com.android.support.test:runner:0.5'
答案 6 :(得分:6)
从androidX使用
androidTestImplementation 'androidx.test:rules:1.1.1'
androidTestImplementation 'androidx.test:runner:1.1.1'
在应用级别的build.gradle文件的“依赖项”部分
例如:
dependencies {
androidTestImplementation 'androidx.test:rules:1.1.1'
androidTestImplementation 'androidx.test:runner:1.1.1'
}
然后导入
import androidx.test.rule.ActivityTestRule;
答案 7 :(得分:2)
要在Android中编写 UI测试((在Android Device / Emulator上运行的测试)),请确保
Test类位于 androidTest 包中,而不是 test 包中。
确保在build.gradle中建立以下依赖项
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' androidTestImplementation 'androidx.test:runner:1.2.0' androidTestImplementation 'androidx.test:rules:1.2.0' androidTestImplementation 'androidx.test.ext:junit:1.1.1' testImplementation 'junit:junit:4.13'
对于单元测试(在JVM上运行的测试),请确保
1.Test类位于 test 包
中2。确保在build.gradle中建立以下依赖项
testImplementation 'junit:junit:4.13'
testImplementation 'org.mockito:mockito-core:2.23.0'