我一直在尝试使用 Espresso 执行一个简单的 UI 测试,但我所有的测试都失败了,但出现了相同的异常:
java.lang.IllegalStateException:未注册检测!必须在注册仪器下运行
这是在使用一个esspresso新手引导在这里。我已经找到了类似的问题,但与我最相关的问题在这里没有得到解答- 我认为这是因为他们没有描绘出整个画面,所以这是我的代码。我将只展示一个测试,因为它们都以完全相同的错误失败:
build.gradle(模块:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "io.github.vinge1718.myrestaurants"
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
//testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
testOptions {
unitTests {
includeAndroidResources = true
}
}
}
dependencies {
testImplementation "org.robolectric:robolectric:3.8"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
androidTestImplementation 'androidx.test:runner:1.1.0'
androidTestImplementation 'androidx.test:rules:1.1.0'
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
}
build.gradle(项目:MyRestaurant)
更正这里是两个测试。我不认为错误与测试本身有任何关系,而是与配置有关 - 不过我已经纠正了
白猪掌柜的
慕村9548890
波斯汪
相关分类