zsperske
07/05/2020, 6:55 PMKotlin.test.Test
annotations and when I try to right click and run from Intellij it generates this test command which looks wrong cleanIosTest iosTest --tests "tests.MyTest.test
, I've tried changing the command to just test --tests "tests.MyTest.test
to no availandylamax
07/05/2020, 7:00 PMiosTest
, all test from ios and common will be tested on an ios environment. Similarly, when you execute jvmTest
all test from jvmTest and common will be run on a jvm environment.
So, In short, you can run commonTest in an environment of your choosingzsperske
07/05/2020, 7:10 PM./gradlew test
at the top level*> Task :SharedCode:compileDebugUnitTestKotlinAndroid* FAILED
runsimplementation kotlin('test')
in an androidTest.dependencies
block, thanks for your help @andylamax!andylamax
07/05/2020, 7:55 PM