I have a multi module KMP Project, and i have two ...
# kotest
v
I have a multi module KMP Project, and i have two different data model modules
:data:models
and
:domain:models
I want to create Custom Arbs for each data model (data class) Where should i keep the custom Arbs so I can access in the other modules depending on these modules when testing? If i'm not wrong gradle modules only pulls the
commonMain
sourceset when one module depends on another, but my arbs are in
androidUnitTest
or
commonTest
e
Didn’t @Javier reply already? His response was valid. Your best option is to make another module with the arbs in the main sources