DeviceAnimationTestRule
使用Espresso在Android上运行检测测试需要禁用动画。 DeviceAnimationTestRule是一个JUnit规则,可在运行任何测试之前禁用设备动画,并在执行每个测试之后启用它们。
该解决方案只是在其提出的解决方案的包装。
设置
添加到顶级gradle.build文件
allprojects {
repositories {
maven { url " https://jitpack.io " }
}
}
添加到应用程序模块gradle.build文件
dependencies {
androidTestImplementation ' com.github.VictorAlbertos:DeviceAnimationTestRule:0.0.3 '
}
用法
添加到Androi
2021-03-01 18:06:42
105KB
Kotlin
1