I have several tests which generate output files a...
# multiplatform
z
I have several tests which generate output files and I'm wondering what others do for this. At the moment I have a util function in my common code that writes to
./build/test-output/$PLATFORM
PLATFORM
being an expect val which is set in each sourceset to the proper directory. Is there a better way to go about this maybe communicating with gradle somehow?
a
We have a Platform class in our common code any way that is part of our common library and essentially do the same thing. For what its worth, I haven't seen a better option yet.