Is using a separate Gradle module the way to go fo...
# test
e
Is using a separate Gradle module the way to go for hosting test utilities?
j
I don't think there is only one answer as it can be really different based on the use case, but the general use case could be "test fixtures", which are documented on Gradle docs
s
+1 for testFixtures. Really lightweight solution for it.. at least compared to extra modules.
I am not sure how compatible they are with multiplatform however
j
They don’t work with Android, and I think they don’t work with KMP with or without Android.
1
e
I ended up with a separate module. testFixtures are relatively new and there is no support for KMP.