标签: inline suspend mockk
当我尝试模拟暂停内联函数时,似乎coEvery挂起。
下面的代码在删除内联修饰符的情况下有效
storeApi中的功能: suspend inline fun getAllStores(): List<Store>
suspend inline fun getAllStores(): List<Store>
测试代码: coEvery { storeApi.getAllStores() } returns allStores
coEvery { storeApi.getAllStores() } returns allStores
我想有一种方法来模拟暂停内联函数,而不仅仅是暂停
答案 0 :(得分:1)
简单的答案-否,不可能。