I've wrapped an RxJava based API as a coroutines based API using said library. However I cannot test any code where that API is involved because the coroutine testing dispatcher doesn't seem to support it.
g
Giorgos Neokleous
12/22/2020, 4:44 PM
If you are wrapping to Flows, I recommend Turbine. I also I found this article extremely useful for understanding how to go about testing Flows.
right before calling my reactive-based coroutines. That gives these coroutines a chance to complete their work before the test dispatcher is responsive again, which avoids the problem.