thevery
12/21/2018, 8:25 AMdef binary = kotlin.targets.iosSim.compilations.test.getBinary('EXECUTABLE', 'DEBUG')
doesn't work anymore in eap-52, what it the new way to get test binary?msink
12/21/2018, 8:48 AMilya.matveev
12/21/2018, 8:59 AMcompilations.main.outputKinds = [...]
but also provides additional APIs to create and configure binaries independently. So the default test executable is now created using these APIs. You can access it in the following way:
kotlin.targets.ios.binaries.getExecutable('test', 'DEBUG').outputFile
But inability to access the default test executable in the "old" way looks like a bug. Could you please open a tiket at YouTrack or GitHub?thevery
12/21/2018, 9:55 AM