TestMatrix captures details about a test run.
Signature:
export declare class TestMatrix
Properties
Property | Modifiers | Type | Description |
---|---|---|---|
clientInfo | ClientInfo | Information about the client which invoked the test. | |
createTime | string | When this test matrix was initially created (ISO8601 timestamp). | |
invalidMatrixDetails | InvalidMatrixDetails | For 'INVALID' matrices only, describes why the matrix is invalid. | |
outcomeSummary | OutcomeSummary | The overall outcome of the test matrix run. Only set when the test matrix state is FINISHED. | |
resultStorage | ResultStorage | Where the results for the matrix are located. | |
state | TestState | Indicates the current progress of the test matrix | |
testMatrixId | string | Unique id set by the service. |
testLab.TestMatrix.clientInfo
Information about the client which invoked the test.
Signature:
clientInfo: ClientInfo;
testLab.TestMatrix.createTime
When this test matrix was initially created (ISO8601 timestamp).
Signature:
createTime: string;
testLab.TestMatrix.invalidMatrixDetails
For 'INVALID' matrices only, describes why the matrix is invalid.
Signature:
invalidMatrixDetails?: InvalidMatrixDetails;
testLab.TestMatrix.outcomeSummary
The overall outcome of the test matrix run. Only set when the test matrix state is FINISHED.
Signature:
outcomeSummary?: OutcomeSummary;
testLab.TestMatrix.resultStorage
Where the results for the matrix are located.
Signature:
resultStorage: ResultStorage;
testLab.TestMatrix.state
Indicates the current progress of the test matrix
Signature:
state: TestState;
testLab.TestMatrix.testMatrixId
Unique id set by the service.
Signature:
testMatrixId: string;