IosTestLoopArgs

data class IosTestLoopArgs(val appIpa: Output<FileReferenceArgs>, val scenarios: Output<List<Int>>? = null) : ConvertibleToJava<IosTestLoopArgs>

A test of an iOS application that implements one or more game loop scenarios. This test type accepts an archived application (.ipa file) and a list of integer scenarios that will be executed on the app sequentially.

Constructors

Link copied to clipboard
fun IosTestLoopArgs(appIpa: Output<FileReferenceArgs>, scenarios: Output<List<Int>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): IosTestLoopArgs

Properties

Link copied to clipboard

The .ipa of the application to test.

Link copied to clipboard
val scenarios: Output<List<Int>>? = null

The list of scenarios that should be run during the test. Defaults to the single scenario 0 if unspecified.