-
- All Implemented Interfaces:
-
org.gradle.api.Named,org.jetbrains.kotlin.gradle.plugin.KotlinExecution,org.jetbrains.kotlin.gradle.plugin.KotlinTargetExecution,org.jetbrains.kotlin.gradle.plugin.KotlinTargetTestRun,org.jetbrains.kotlin.gradle.plugin.KotlinTestRun,org.jetbrains.kotlin.gradle.targets.native.KotlinNativeBinaryTestRun
public interface KotlinNativeSimulatorTestRun implements KotlinNativeBinaryTestRun
-
-
Method Summary
Modifier and Type Method Description abstract StringgetDeviceId()Determines which simulated device will be used to execute the test run. abstract UnitsetDeviceId(String deviceId)Determines which simulated device will be used to execute the test run. abstract NativeBinaryTestRunSourcegetExecutionSource()abstract KotlinTargetgetTarget()-
Methods inherited from class org.jetbrains.kotlin.gradle.targets.native.KotlinNativeSimulatorTestRun
setExecutionSourceFrom -
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinTargetTestRun
filter, filter -
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinExecution
getName -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getDeviceId
abstract String getDeviceId()
Determines which simulated device will be used to execute the test run. To get list of all available devices, run
xcrun simctl list.
-
setDeviceId
abstract Unit setDeviceId(String deviceId)
Determines which simulated device will be used to execute the test run. To get list of all available devices, run
xcrun simctl list.
-
getExecutionSource
abstract NativeBinaryTestRunSource getExecutionSource()
-
getTarget
abstract KotlinTarget getTarget()
-
-
-
-