Show / Hide Table of Contents

Class TestSuiteOverview

A summary of a test suite result either parsed from XML or uploaded directly by a user. Note: the API related comments are for StepService only. This message is also being used in ExecutionService in a read only mode for the corresponding step.

Inheritance
object
TestSuiteOverview
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.ToolResults.v1beta3.Data
Assembly: Google.Apis.ToolResults.v1beta3.dll
Syntax
public class TestSuiteOverview : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ElapsedTime

Elapsed time of test suite.

Declaration
[JsonProperty("elapsedTime")]
public virtual Duration ElapsedTime { get; set; }
Property Value
Type Description
Duration

ErrorCount

Number of test cases in error, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never

Declaration
[JsonProperty("errorCount")]
public virtual int? ErrorCount { get; set; }
Property Value
Type Description
int?

FailureCount

Number of failed test cases, typically set by the service by parsing the xml_source. May also be set by the user. - In create/response: always set - In update request: never

Declaration
[JsonProperty("failureCount")]
public virtual int? FailureCount { get; set; }
Property Value
Type Description
int?

FlakyCount

Number of flaky test cases, set by the service by rolling up flaky test attempts. Present only for rollup test suite overview at environment level. A step cannot have flaky test cases.

Declaration
[JsonProperty("flakyCount")]
public virtual int? FlakyCount { get; set; }
Property Value
Type Description
int?

Name

The name of the test suite. - In create/response: always set - In update request: never

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

SkippedCount

Number of test cases not run, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never

Declaration
[JsonProperty("skippedCount")]
public virtual int? SkippedCount { get; set; }
Property Value
Type Description
int?

TotalCount

Number of test cases, typically set by the service by parsing the xml_source. - In create/response: always set - In update request: never

Declaration
[JsonProperty("totalCount")]
public virtual int? TotalCount { get; set; }
Property Value
Type Description
int?

XmlSource

If this test suite was parsed from XML, this is the URI where the original XML file is stored. Note: Multiple test suites can share the same xml_source Returns INVALID_ARGUMENT if the uri format is not supported. - In create/response: optional - In update request: never

Declaration
[JsonProperty("xmlSource")]
public virtual FileReference XmlSource { get; set; }
Property Value
Type Description
FileReference

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX