Struct google_testing1::TestSpecification[][src]

pub struct TestSpecification {
    pub test_timeout: Option<String>,
    pub test_setup: Option<TestSetup>,
    pub disable_video_recording: Option<bool>,
    pub disable_performance_metrics: Option<bool>,
    pub auto_google_login: Option<bool>,
    pub android_test_loop: Option<AndroidTestLoop>,
    pub android_robo_test: Option<AndroidRoboTest>,
    pub android_instrumentation_test: Option<AndroidInstrumentationTest>,
}

A description of how to run the test.

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

Fields

Max time a test execution is allowed to run before it is automatically cancelled. Optional, default is 5 min.

Test setup requirements e.g. files to install, bootstrap scripts Optional

Disables video recording; may reduce test latency.

Disables performance metrics recording; may reduce test latency.

Enables automatic Google account login. If set, the service will automatically generate a Google test account and add it to the device, before executing the test. Note that test accounts might be reused. Many applications show their full set of functionalities when an account is present on the device. Logging into the device with these generated accounts allows testing more functionalities. Default is false. Optional

An Android Application with a Test Loop

An Android robo test.

An Android instrumentation test.

Trait Implementations

impl Default for TestSpecification
[src]

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

impl Clone for TestSpecification
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestSpecification
[src]

Formats the value using the given formatter. Read more

impl Part for TestSpecification
[src]

Auto Trait Implementations