When I build my multi-platform project, a warning is emitted for the common module about using org.junit.Test
:
w: ...\common\src\test\kotlin\mp\CommonClassTest.kt: (3, 18): 'typealias Test = Test' is deprecated. Use 'Test' from kotlin.test package
If I change the import to kotlin.test.Test
, the build fails. Which is easy to explain because kotlin-test-common-1.1.4.jar
does not contain this type.
Is this a known issue, or should I create an issue?