Struct google_testing1::TestMatrix[][src]

pub struct TestMatrix {
    pub client_info: Option<ClientInfo>,
    pub project_id: Option<String>,
    pub result_storage: Option<ResultStorage>,
    pub state: Option<String>,
    pub test_executions: Option<Vec<TestExecution>>,
    pub test_specification: Option<TestSpecification>,
    pub test_matrix_id: Option<String>,
    pub timestamp: Option<String>,
    pub invalid_matrix_details: Option<String>,
    pub environment_matrix: Option<EnvironmentMatrix>,
}

A group of one or more TestExecutions, built by taking a product of values over a pre-defined set of axes.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Information about the client which invoked the test. Optional

The cloud project that owns the test matrix. @OutputOnly

Where the results for the matrix are written. Required

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

The list of test executions that the service creates for this matrix. @OutputOnly

How to run the test. Required

Unique id set by the service. @OutputOnly

The time this test matrix was initially created. @OutputOnly

Describes why the matrix is considered invalid. Only useful for matrices in the INVALID state. @OutputOnly

How the host machine(s) are configured. Required

Trait Implementations

impl Default for TestMatrix
[src]

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

impl Clone for TestMatrix
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestMatrix
[src]

Formats the value using the given formatter. Read more

impl RequestValue for TestMatrix
[src]

impl ResponseResult for TestMatrix
[src]

Auto Trait Implementations

impl Send for TestMatrix

impl Sync for TestMatrix