I forget what this feature is called (I think it w...
# multiplatform
c
I forget what this feature is called (I think it was called fixtures or something), but does this exist for KMP? If module
:foo
depends on module
:bar
(where both modules have the multiplatform plugin applied), then can files in
:foo/commonTest
see files in
:bar/commonTest
?
a
No, they can not. Unless you do some gradle wizardry
c
Got it. Thanks. For now I created a separate
:bar:test
module and add it in the
commonTest { dependencies {} }
block of my
:foo
module. Is there a YouTrack ticket that I can follow for bringing "fixtures" support to KMP?
z