testLab namespace

อินเทอร์เฟซ

อินเทอร์เฟซ คำอธิบาย
ข้อมูลไคลเอ็นต์ ข้อมูลเกี่ยวกับไคลเอ็นต์ที่เรียกใช้การทดสอบ
ResultStorage ตำแหน่งที่จัดเก็บผลการทดสอบ
TestMatrixCompleteData ข้อมูลภายในเมทริกซ์ทดสอบ Firebase ทั้งหมดทำให้เหตุการณ์เสร็จสมบูรณ์

พิมพ์ชื่อแทน

พิมพ์ชื่อแทน คำอธิบาย
สรุปผลลัพธ์ สรุปผลลัพธ์สำหรับเมทริกซ์การทดสอบที่เสร็จสมบูรณ์
สถานะการทดสอบ สถานะทดสอบที่เป็นไปได้ของเมทริกซ์ทดสอบ

testLab.ผลลัพธ์สรุป

สรุปผลลัพธ์สำหรับเมทริกซ์การทดสอบที่เสร็จสมบูรณ์

ลายเซ็น:

export type OutcomeSummary = 
/** The default value. This value is used if the state is omitted. */
"OUTCOME_SUMMARY_UNSPECIFIED"
/**
 * The test matrix run was successful, for instance:
 * - All test cases passed.
 * - No crash of the application under test was detected.
 */
 | "SUCCESS"
/**
 * A run failed, for instance:
 * - One or more test case failed.
 * - A test timed out.
 * - The application under test crashed.
 */
 | "FAILURE"
/**
 * Something unexpected happened. The test run should still be considered
 * unsuccessful but this is likely a transient problem and re-running the
 * test might be successful.
 */
 | "INCONCLUSIVE"
/** All tests were skipped. */
 | "SKIPPED";

testLab.TestState

สถานะทดสอบที่เป็นไปได้ของเมทริกซ์ทดสอบ

ลายเซ็น:

export type TestState = 
/** The default value. This value is used if the state is omitted. */
"TEST_STATE_UNSPECIFIED"
/** The test matrix is being validated. */
 | "VALIDATING"
/** The test matrix is waiting for resources to become available. */
 | "PENDING"
/** The test matrix has completed normally. */
 | "FINISHED"
/** The test matrix has completed because of an infrastructure failure. */
 | "ERROR"
/** The test matrix was not run because the provided inputs are not valid. */
 | "INVALID";