christophsturm
10/10/2018, 3:10 PM@Test
fun blahTest() = runBlocking {
expect {
suspendMethod()
}
}
suspend fun suspendMethod() {
}
this works if expect is changed to inline
. that way you can call your suspend methods in the expect block, without any coroutines dependency in strikt