我androidx.test
在我的项目中使用库(我最近迁移到)并使用 custom AndroidJUnitRunner
。在迁移之前一切正常,但现在我收到了这个错误 -
Started running tests
Test running failed: Instrumentation run failed due to 'Process crashed.'
Empty test suite.
我使用的自定义运行器类扩展自androidx.test.runner.AndroidJUnitRunner
在我的应用程序build.gradle
文件中,我有以下设置 -
testInstrumentationRunner "com.example.CustomTestRunner"
有依赖关系 -
androidTestImplementation "androidx.test.ext:junit:1.1.0"
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test:core:1.1.0'
androidTestImplementation "androidx.test:rules:1.1.1"
我所有的测试课程都有@RunWith(androidx.test.ext.junit.runners.AndroidJUnit4.class)
我被困在这一点上。任何帮助,将不胜感激。谢谢。