hmole
10/16/2018, 12:04 PMcommonTest
and androidTest
from another module?gildor
10/16/2018, 2:31 PMhmole
10/17/2018, 4:47 AMtest
that depends on my core
module. Then test-android
and test-ios
, which both will depend on the first two? Sad state of affairs if it's like that.gildor
10/17/2018, 5:51 AMcore
module”hmole
10/17/2018, 9:27 AMgildor
10/17/2018, 9:28 AMcommonTest
and `androidTest`“?hmole
10/17/2018, 9:41 AMcommonMain
module. I want to test it in android instrumentation tests because android side of the commonMain
needs context. To do that I need to create separate android.application
module and somehow get the actual tests from whatever common module has them. I also want to run ios tests from iosTest
.
Question: how do I share tests between ios tests and android instrumentation tests in another module?androidTest
doesn't have commonMain
classes in it's classpath, but ide recoginzes them.