我的 viewModel 中有一个协程,它运行得非常好。当我尝试对其进行单元测试时,它会引发以下错误“ Could not create instance for [type:Factory,primary_type:..MyService
”
我正在注入服务并进行 API 调用,这在单元测试时工作正常。如果 API 失败,我将使用具有不同参数的新服务实例重试相同的 API 调用。这在我的应用程序中运行良好,但在单元测试中失败。这是以下代码:
coroutineScope.launch {
try {
var getResponse = myApi?.getCodeApi()
if (getResponse?.code() == HttpURLConnection.HTTP_UNAUTHORIZED) {
// Retrying with instance of service with a different token
val newMyApiService: MyService? by inject { parametersOf(newToken) }
getResponse = newMyApiService?.getCodeApi()
}
checkResponse(getResponse)
} catch (exception: Exception) {
Timber.e(exception)
}
}
有没有办法来解决这个问题?。我已经采取了所有必要的措施,比如测试环境的startingKoinApp,在开始测试之前还包括了所需的Koin模块。
单元测试的一部分看起来像这样
whenever(myAPi.getCodeApi()).thenReturn(properResponse)
val errorResponse : Response<DataModel> = mock()
whenever(response.code()).thenReturn(HttpsURLConnection.HTTP_UNAUTHORIZED)
whenever(myAPi.getCodeApi()).thenReturn(errorResponse)