Sebouh Aguehian
10/13/2020, 8:10 AMFor both the application and tests you can set breakpoints and debug your code on iOS.I created a new project and added a single iOS test in the shared module. Stopping on breakpoints isn’t working.
import kotlin.test.Test
import kotlin.test.assertTrue
class IosTest {
@Test
fun test() {
assertTrue(false) // breakpoint here
}
}
Konstantin Tskhovrebov
10/13/2020, 11:28 AMKris Wong
10/13/2020, 12:33 PMSebouh Aguehian
10/13/2020, 7:19 PMKris Wong
10/13/2020, 7:24 PM