AndroidRoboTestResponse

data class AndroidRoboTestResponse(val appInitialActivity: String, val bootstrapPackageId: String, val bootstrapRunnerClass: String, val maxDepth: Int, val maxSteps: Int)

A test of an android application that explores the application on a virtual or physical Android device, finding culprits and crashes as it goes.

Constructors

Link copied to clipboard
fun AndroidRoboTestResponse(appInitialActivity: String, bootstrapPackageId: String, bootstrapRunnerClass: String, maxDepth: Int, maxSteps: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The initial activity that should be used to start the app. Optional

Link copied to clipboard

The java package for the bootstrap. Optional

Link copied to clipboard

The runner class for the bootstrap. Optional

Link copied to clipboard

The max depth of the traversal stack Robo can explore. Optional

Link copied to clipboard

The max number of steps/actions Robo can execute. Default is no limit (0). Optional