testLab namespace

Giao diện

Giao diện Sự miêu tả
Thông tin khách hàng Thông tin về khách hàng đã gọi thử nghiệm.
Lưu trữ kết quả Vị trí lưu trữ kết quả xét nghiệm.
Dữ liệu đã hoàn thành TestMatrix Dữ liệu trong tất cả các sự kiện đã hoàn thành trong ma trận thử nghiệm Firebase.

Nhập bí danh

Nhập bí danh Sự miêu tả
Kết quảTóm tắt Tóm tắt kết quả cho một ma trận thử nghiệm đã hoàn thành.
Trạng thái kiểm tra Các trạng thái thử nghiệm có thể có cho ma trận thử nghiệm.

testLab.OutcomeTóm tắt

Tóm tắt kết quả cho một ma trận thử nghiệm đã hoàn thành.

Chữ ký:

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

Các trạng thái thử nghiệm có thể có cho ma trận thử nghiệm.

Chữ ký:

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";