How to run these tests in IDEA? I tried to right c...
# multiplatform
a
How to run these tests in IDEA? I tried to right click the
test
folder, unlike the
jvm
folder, The
Run XXXX
is wrong, it said
Run Unittest in test
, which has been recognised as a python project… Is that the same problem as you mentioned? ’cos it lacks the actual implementation? How could I run these tests via IDEA GUI like the
JVM
one? I tried
./gradlew :common:test
, not work, seems the tests can be run via the platform build like
./gradlew :jvm:test
. What ’s the logic here? So does it mean that it only make sense to test the
common
against the platform that it gonna run on rather than test the
common
code itself?