1 import kotlinx.coroutines.test.* 2 import kotlin.test.* 3 4 class SampleTest { 5 @Test <lambda>null6 fun test() = runTest { 7 doWorld() 8 } 9 } 10