savrov
07/21/2020, 9:58 PMcommonTest
. Is it possible to access to this class from *B*’s commonTest
?
I thought to do something like this, but it does not seems to work:
commonMain {
dependencies {
implementation(project(':moduleA'))
}
}
commonTest {
dependencies {
implementation(project(':moduleA'))
}
}
russhwolf
07/21/2020, 10:26 PMTestUtil
to its commonMain
, and depend on C from A’s and B’s tests.savrov
07/21/2020, 10:38 PM