is there a way to use classes from `commonTest` in...
# multiplatform
m
is there a way to use classes from
commonTest
inside Android and iOS tests that are outside shared module?
m
No you can not see the classes from test resources even though you import the module. Rather try creating another module (let’s call test) and import it into the modules as
testImplementation
then you will be able to share some stuff between test modules