AndroidTestLoopResponse

data class AndroidTestLoopResponse(val appApk: FileReferenceResponse, val appBundle: AppBundleResponse, val appPackageId: String, val scenarioLabels: List<String>, val scenarios: List<Int>)

A test of an Android Application with a Test Loop. The intent \ will be implicitly added, since Games is the only user of this api, for the time being.

Constructors

Link copied to clipboard
fun AndroidTestLoopResponse(appApk: FileReferenceResponse, appBundle: AppBundleResponse, appPackageId: String, scenarioLabels: List<String>, scenarios: List<Int>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The APK for the application under test.

Link copied to clipboard

A multi-apk app bundle for the application under test.

Link copied to clipboard

The java package for the application under test. The default is determined by examining the application's manifest.

Link copied to clipboard

The list of scenario labels that should be run during the test. The scenario labels should map to labels defined in the application's manifest. For example, player_experience and com.google.test.loops.player_experience add all of the loops labeled in the manifest with the com.google.test.loops.player_experience name to the execution. Scenarios can also be specified in the scenarios field.

Link copied to clipboard

The list of scenarios that should be run during the test. The default is all test loops, derived from the application's manifest.