Class MergedResult
Merged test result for environment. If the environment has only one step (no reruns or shards), then the merged result is the same as the step result. If the environment has multiple shards and/or reruns, then the results of shards and reruns that belong to the same environment are merged into one environment result.
Implements
Inherited Members
Namespace: Google.Apis.ToolResults.v1beta3.Data
Assembly: Google.Apis.ToolResults.v1beta3.dll
Syntax
public class MergedResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Outcome
Outcome of the resource
Declaration
[JsonProperty("outcome")]
public virtual Outcome Outcome { get; set; }
Property Value
Type | Description |
---|---|
Outcome |
State
State of the resource
Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type | Description |
---|---|
string |
TestSuiteOverviews
The combined and rolled-up result of each test suite that was run as part of this environment. Combining: When the test cases from a suite are run in different steps (sharding), the results are added back together in one overview. (e.g., if shard1 has 2 failures and shard2 has 1 failure than the overview failure_count = 3). Rollup: When test cases from the same suite are run multiple times (flaky), the results are combined (e.g., if testcase1.run1 fails, testcase1.run2 passes, and both testcase2.run1 and testcase2.run2 fail then the overview flaky_count = 1 and failure_count = 1).
Declaration
[JsonProperty("testSuiteOverviews")]
public virtual IList<TestSuiteOverview> TestSuiteOverviews { get; set; }
Property Value
Type | Description |
---|---|
IList<TestSuiteOverview> |