ইন্টারফেস
ইন্টারফেস | বর্ণনা |
---|---|
ক্লায়েন্ট ইনফো | ক্লায়েন্ট সম্পর্কে তথ্য যা পরীক্ষা শুরু করেছে। |
রেজাল্ট স্টোরেজ | অবস্থান যেখানে পরীক্ষার ফলাফল সংরক্ষণ করা হয়। |
TestMatrixCompletedData | সমস্ত 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";