Struct google_testing1::AndroidRoboTest[][src]

pub struct AndroidRoboTest {
    pub robo_directives: Option<Vec<RoboDirective>>,
    pub max_depth: Option<i32>,
    pub app_apk: Option<FileReference>,
    pub app_package_id: Option<String>,
    pub app_initial_activity: Option<String>,
    pub max_steps: Option<i32>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

A set of directives Robo should apply during the crawl. This allows users to customize the crawl. For example, the username and password for a test account can be provided. Optional

The max depth of the traversal stack Robo can explore. Needs to be at least 2 to make Robo explore the app beyond the first activity. Default is 50. Optional

The APK for the application under test. Required

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

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

The max number of steps Robo can execute. Default is no limit. Optional

Trait Implementations

impl Default for AndroidRoboTest
[src]

Returns the "default value" for a type. Read more

impl Clone for AndroidRoboTest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AndroidRoboTest
[src]

Formats the value using the given formatter. Read more

impl Part for AndroidRoboTest
[src]

Auto Trait Implementations