Hi all, I'm running into an issue with a multiplatform project where I need to add the test code of my common project as a dependency in the test code of my main project. I have tried to set it up like the below, but when I use
implementation(project(":common"))
it does not add the test source set code as a dependency, only the main source set code of my common project gets added as a dependency. Is there a way to add the test source set code of my common project as a dependency to the tests of my main project?