Emil Kantis
01/22/2021, 11:03 AMMarc Knaup
01/22/2021, 11:12 AMEmil Kantis
01/22/2021, 11:28 AMassert()
or runBlocking {}
would create issues since they don't exist for all platforms (even though I'm just targeting JVM and Native, for which implementations exist)Marc Knaup
01/22/2021, 11:30 AMcommon
target only accepts code that is available on all potential platforms.
Unfortunately there is currently no way to write common code that works on JVM and Native but not on others without using actual
and expect
.Emil Kantis
01/22/2021, 11:32 AM