AndroidInstrumentationTestArgs

data class AndroidInstrumentationTestArgs(val testPackageId: Output<String>? = null, val testRunnerClass: Output<String>? = null, val testTargets: Output<List<String>>? = null, val useOrchestrator: Output<Boolean>? = null) : ConvertibleToJava<AndroidInstrumentationTestArgs>

A test of an Android application that can control an Android component independently of its normal lifecycle. See for more information on types of Android tests.

Constructors

Link copied to clipboard
fun AndroidInstrumentationTestArgs(testPackageId: Output<String>? = null, testRunnerClass: Output<String>? = null, testTargets: Output<List<String>>? = null, useOrchestrator: Output<Boolean>? = null)

Functions

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

Properties

Link copied to clipboard
val testPackageId: Output<String>? = null

The java package for the test to be executed. Required

Link copied to clipboard
val testRunnerClass: Output<String>? = null

The InstrumentationTestRunner class. Required

Link copied to clipboard
val testTargets: Output<List<String>>? = null

Each target must be fully qualified with the package name or class name, in one of these formats: - "package package_name" - "class package_name.class_name" - "class package_name.class_name#method_name" If empty, all targets in the module will be run.

Link copied to clipboard
val useOrchestrator: Output<Boolean>? = null

The flag indicates whether Android Test Orchestrator will be used to run test or not.