Struct google_testing1::TestExecution[][src]

pub struct TestExecution {
    pub timestamp: Option<String>,
    pub matrix_id: Option<String>,
    pub state: Option<String>,
    pub id: Option<String>,
    pub environment: Option<Environment>,
    pub test_specification: Option<TestSpecification>,
    pub project_id: Option<String>,
    pub tool_results_step: Option<ToolResultsStep>,
    pub test_details: Option<TestDetails>,
}

Specifies a single test to be executed in a single environment.

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

Fields

The time this test execution was initially created. @OutputOnly

Id of the containing TestMatrix. @OutputOnly

Indicates the current progress of the test execution (e.g., FINISHED). @OutputOnly

Unique id set by the backend. @OutputOnly

How the host machine(s) are configured. @OutputOnly

How to run the test. @OutputOnly

The cloud project that owns the test execution. @OutputOnly

Where the results for this execution are written. @OutputOnly

Additional details about the running test. @OutputOnly

Trait Implementations

impl Default for TestExecution
[src]

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

impl Clone for TestExecution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestExecution
[src]

Formats the value using the given formatter. Read more

impl Part for TestExecution
[src]

Auto Trait Implementations