[][src]Struct google_testing1::TestSpecification

pub struct TestSpecification {
    pub ios_test_setup: Option<IosTestSetup>,
    pub ios_xc_test: Option<IosXcTest>,
    pub test_timeout: Option<String>,
    pub test_setup: Option<TestSetup>,
    pub disable_video_recording: Option<bool>,
    pub disable_performance_metrics: 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

ios_test_setup: Option<IosTestSetup>

Test setup requirements for iOS.

ios_xc_test: Option<IosXcTest>

An iOS XCTest, via an .xctestrun file.

test_timeout: Option<String>

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

test_setup: Option<TestSetup>

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

disable_video_recording: Option<bool>

Disables video recording. May reduce test latency.

disable_performance_metrics: Option<bool>

Disables performance metrics recording. May reduce test latency.

android_test_loop: Option<AndroidTestLoop>

An Android Application with a Test Loop.

android_robo_test: Option<AndroidRoboTest>

An Android robo test.

android_instrumentation_test: Option<AndroidInstrumentationTest>

An Android instrumentation test.

Trait Implementations

impl Part for TestSpecification[src]

impl Default for TestSpecification[src]

impl Clone for TestSpecification[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for TestSpecification[src]

impl Serialize for TestSpecification[src]

impl<'de> Deserialize<'de> for TestSpecification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]