phisch
11/04/2020, 2:43 PMKris Wong
11/04/2020, 2:49 PMphisch
11/04/2020, 2:52 PMKris Wong
11/04/2020, 2:55 PMKris Wong
11/04/2020, 2:55 PMphisch
11/04/2020, 2:56 PMphisch
11/04/2020, 2:56 PMKris Wong
11/04/2020, 2:59 PMphisch
11/04/2020, 3:00 PMKris Wong
11/04/2020, 3:06 PMphisch
11/04/2020, 3:07 PMphisch
11/04/2020, 3:14 PMKris Wong
11/04/2020, 3:23 PMKris Wong
11/04/2020, 3:23 PMKris Wong
11/04/2020, 3:23 PMKris Wong
11/04/2020, 3:23 PMphisch
11/04/2020, 3:24 PMKris Wong
11/04/2020, 3:24 PMKris Wong
11/04/2020, 3:24 PMphisch
11/04/2020, 3:25 PMKris Wong
11/04/2020, 3:27 PMphisch
11/04/2020, 3:29 PMphisch
11/04/2020, 3:30 PMTijl
11/04/2020, 4:06 PMphisch
11/04/2020, 4:08 PMAlt+Insert
and select Test
can you actually generate a test with the dialog that opens up? I even installed the KotlinTest plugin to support generating those, but whenever i hit the OK
button, it does nothing and stays open.Tijl
11/04/2020, 4:29 PMkotest
, not the kotlin test annotations that come with kotlin multiplatform.
however kotest claims to be multiplatform, and it was able to generate this code in the androidTest
package:
package com.splendo.kaluga.starter.shared
import io.kotlintest.specs.StringSpec
import io.kotlintest.shouldBe
class GreetingTest : StringSpec() {
init {
"greeting" { }
}
}
The fact that it puts in in the android module means the plugin is JVM focused. So that plugin will need to be updated for a seemless experiencephisch
11/04/2020, 4:33 PMphisch
11/04/2020, 4:38 PM