AndroidInstrumentationTestResponse

data class AndroidInstrumentationTestResponse(val testPackageId: String, val testRunnerClass: String, val testTargets: List<String>, val useOrchestrator: Boolean)

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 AndroidInstrumentationTestResponse(testPackageId: String, testRunnerClass: String, testTargets: List<String>, useOrchestrator: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The java package for the test to be executed. Required

Link copied to clipboard

The InstrumentationTestRunner class. Required

Link copied to clipboard

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

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