इंटरफ़ेस
इंटरफ़ेस | ब्यौरा |
---|---|
ClientInfo | उस क्लाइंट की जानकारी जिसने जांच शुरू की है. |
नतीजे के तौर पर सेव किया जाने वाला स्टोरेज | ऐसी जगहें जहां जांच के नतीजे सेव किए जाते हैं. |
TestMatrixपूरा किया गया डेटा | 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";
टेस्टलैब.टेस्टस्टेट
टेस्ट मैट्रिक्स के लिए टेस्ट की संभावित स्थितियां.
हस्ताक्षर:
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";