saket
task checkiOS { def device = project.findProperty("iosDevice")?.toString() ?: "iPhone 8" dependsOn 'linkDebugTestIos' group = JavaBasePlugin.VERIFICATION_GROUP description = "Runs tests for target 'ios' on an iOS simulator" doLast { def binary = kotlin.targets.ios.binaries.getTest('DEBUG').outputFile exec { commandLine 'xcrun', 'simctl', 'spawn', '--standalone', device, binary.absolutePath } } } tasks.check.dependsOn checkiOS
Dominaezzz
./gradlew macosX64Test
macosX64Test
russhwolf
iosTest
A modern programming language that makes developers happier.