Android Instrumentation Test Response
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
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.