Kirill Zhukov
09/01/2023, 2:58 AMjvmIntegrationTest
is failing to resolve references from commonMain
.Kirill Zhukov
09/01/2023, 2:59 AMKirill Zhukov
09/01/2023, 3:00 AMjvmIntegrationTest
code getting a bunch of Cannot access class foo
where `foo`s are references from commonMain
of this exact same module.Kirill Zhukov
09/01/2023, 3:00 AMKirill Zhukov
09/01/2023, 3:15 AMassociateWith(main)
to compilation doesn’t seem to helpKirill Zhukov
09/01/2023, 6:11 AMassociateWith(test)
, wouldn’t that make integrationTest
depend on test
? - I don’t really want thatKirill Zhukov
09/01/2023, 6:13 AMjvmTest
when running jvmIntegrationTest
which is not idealKirill Zhukov
09/01/2023, 6:14 AMassociateWith(main)
might be what I want here actuallyKirill Zhukov
09/01/2023, 6:15 AMKirill Zhukov
09/01/2023, 6:27 AMassociateWith(main)
. So associateWith
ain’t it? Wish associateWith
had some docs on it 🙃Kirill Zhukov
09/01/2023, 6:42 AMimplementation(kotlin("test-junit"))
on the `integrationTest`’s default source set… How does this work?ephemient
09/01/2023, 7:27 AMtest
depending whether the test task uses JUnit 4, JUnit Jupiter, etc.ephemient
09/01/2023, 7:28 AMKirill Zhukov
09/01/2023, 7:29 AMjvmIntegrationTest
source set is unable to resolve references from jvmMain
source set of that same module 🤔