Dominaezzz
11/20/2019, 3:51 PMtestImplementation(kotlin("test-common"))
testImplementation(kotlin("test-annotations-common"))
testImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
(which works for multi-platform) in my Kotlin/JVM project but I can't resolve the kotlin.test.Test
annotation. Is this not supported?jw
11/20/2019, 3:57 PMorg.junit.Test
on the JVMDominaezzz
11/20/2019, 3:59 PMorg.junit.Test
resolves fine but it seems I can't use the alias. (I like my code to be back-end agnostic when I can help it). I'll give this up for now.jw
11/20/2019, 4:00 PMexpect typealias
so there is no kotlin.test.Test
in the JVM artifact to useDominaezzz
11/20/2019, 4:01 PMilya.gorbunov
11/20/2019, 7:42 PMexpect typealias
, it could be either expect class/interface/whatever
or actual typealias
jw
11/20/2019, 7:44 PMexpect annotation ..
and actual typealias ...
and then decided it was too long and deleted a bunch of text and combined the wrong thingsilya.gorbunov
11/20/2019, 7:45 PMkotlin.test.Test
that is reported as unresolved reference.Dominaezzz
11/20/2019, 7:46 PM