do you have common tests?
# multiplatform
j
do you have common tests?
a
Yes. And it’s built via
kotlin-test-common
and
kotlin-annotation-common
j
Ok so when those common tests are being compiled in the JVM module they have nothing to link against
The common test library is stubs and requires an implementation
This is no different than the fact that you use the common stdlib and are including the real stdlib implementation
👍 1
a
Thanks! I see, just like IoC, they are just interfaces, needs actual implementation.
j
Yep!