testLab.TestMatrix class

TestMatrix 可捕获有关测试运行的详细信息。

签名

export declare class TestMatrix 

属性

属性 修饰符 类型 说明
clientInfo ClientInfo 对测试进行调用的客户端的相关信息。
createTime 字符串 此测试矩阵最初创建的时间(ISO8601 时间戳)。
invalidMatrixDetails InvalidMatrixDetails 对于“INVALID”说明矩阵无效的原因。
outcomeSummary OutputSummary(结果摘要) 测试矩阵运行的总体结果。仅在测试矩阵状态为“FINISHED”时设置。
resultStorage ResultStorage 矩阵结果所在的位置。
state TestState 指示测试矩阵的当前进度
testMatrixId 字符串 由服务设置的唯一 ID。

testLab.TestMatrix.clientInfo

对测试进行调用的客户端的相关信息。

签名

clientInfo: ClientInfo;

testLab.TestMatrix.createTime

此测试矩阵最初创建的时间(ISO8601 时间戳)。

签名

createTime: string;

testLab.TestMatrix.invalidMatrixDetails

对于“INVALID”说明矩阵无效的原因。

签名

invalidMatrixDetails?: InvalidMatrixDetails;

testLab.TestMatrix.outcomeSummary

测试矩阵运行的总体结果。仅在测试矩阵状态为“FINISHED”时设置。

签名

outcomeSummary?: OutcomeSummary;

testLab.TestMatrix.resultStorage

矩阵结果所在的位置。

签名

resultStorage: ResultStorage;

testLab.TestMatrix.state

指示测试矩阵的当前进度

签名

state: TestState;

testLab.TestMatrix.testMatrixId

由服务设置的唯一 ID。

签名

testMatrixId: string;