我在我的项目中使用了AndroidJUnitRunner,但是单元测试在Android Studio中的设备和模拟器上执行起来非常慢,也可以通过gradlew
从命令行执行。
我正在使用这个开源项目的主分支OneBusAway(截至本次提交(: https://github.com/OneBusAway/onebusaway-android
我看到所有 142 个测试的执行时间在实际运行时间中超过 3 分钟,但 Android 仅在"测试结果"下显示的执行时间中记录了其中的一小部分。 在切换到AndroidJUnitRunner之前,所有这些单元测试都在20秒内持续执行。
下面是一个示例测试的样子:
/**
* Tests to evaluate utility methods related to math conversions
*/
@RunWith(AndroidJUnit4.class)
public class MathUtilTest {
@Test
public void testOrientationToDirection() {
// East
double direction = MathUtils.toDirection(0);
assertEquals(90.0, direction);
}
}
这是build.gradle
配置:
android {
dexOptions {
preDexLibraries true
}
compileSdkVersion this.ext.compileSdkVersion
buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 93
versionName "2.3.8"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// The following argument makes the Android Test Orchestrator run its
// "pm clear" command after each test invocation. This command ensures
// that the app's state is completely cleared between tests.
testInstrumentationRunnerArguments clearPackageData: 'true'
}
...
testOptions {
execution 'ANDROID_TEST_ORCHESTRATOR'
unitTests.includeAndroidResources true
}
...
}
dependencies {
...
// Unit tests
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestUtil 'com.android.support.test:orchestrator:1.0.2'
...
}
为什么这个运行单元测试这么慢?
显然,速度变慢与包含对 Android Test Orchestrator 的依赖有关,我不需要(即使我在需要 Android 上下文的设备上运行测试(。 从现有文档中我不清楚这些测试不需要 Orchestrator。
我从build.gradle
中删除了以下行,我通过Android Studio的总执行时间回落到~15秒范围:
// The following argument makes the Android Test Orchestrator run its
// "pm clear" command after each test invocation. This command ensures
// that the app's state is completely cleared between tests.
testInstrumentationRunnerArguments clearPackageData: 'true'
...
execution 'ANDROID_TEST_ORCHESTRATOR'
...
androidTestUtil 'com.android.support.test:orchestrator:1.0.2'
因此,这是在 ~15 秒内执行测试的新build.gradle
:
android {
dexOptions {
preDexLibraries true
}
compileSdkVersion this.ext.compileSdkVersion
buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 93
versionName "2.3.8"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
...
testOptions {
unitTests.includeAndroidResources true
}
...
}
...
dependencies {
...
// Unit tests
androidTestImplementation 'com.android.support.test:runner:1.0.2'
}
我认为testInstrumentationRunnerArguments clearPackageData: 'true'
可能是导致执行时间增加以清除包数据的罪魁祸首,但仅删除该行并不能改变测试的总执行时间 - 我必须完全删除 Orchestrator 依赖项。
以下是 Github 上删除 Orchestrator 的提交: https://github.com/OneBusAway/onebusaway-android/commit/a1657c443258ac49b1be83a75399cf2ced71080e