Show / Hide Table of Contents

Class TestExecutionStep

A step that represents running tests. It accepts ant-junit xml files which will be parsed into structured test results by the service. Xml file paths are updated in order to append more files, however they can't be deleted. Users can also add test results manually by using the test_result field.

Inheritance
object
TestExecutionStep
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 TestExecutionStep : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

TestIssues

Issues observed during the test execution. For example, if the mobile app under test crashed during the test, the error message and the stack trace content can be recorded here to assist debugging. - In response: present if set by create or update - In create/update request: optional

Declaration
[JsonProperty("testIssues")]
public virtual IList<TestIssue> TestIssues { get; set; }
Property Value
Type Description
IList<TestIssue>

TestSuiteOverviews

List of test suite overview contents. This could be parsed from xUnit XML log by server, or uploaded directly by user. This references should only be called when test suites are fully parsed or uploaded. The maximum allowed number of test suite overviews per step is 1000. - In response: always set - In create request: optional - In update request: never (use publishXunitXmlFiles custom method instead)

Declaration
[JsonProperty("testSuiteOverviews")]
public virtual IList<TestSuiteOverview> TestSuiteOverviews { get; set; }
Property Value
Type Description
IList<TestSuiteOverview>

TestTiming

The timing break down of the test execution. - In response: present if set by create or update - In create/update request: optional

Declaration
[JsonProperty("testTiming")]
public virtual TestTiming TestTiming { get; set; }
Property Value
Type Description
TestTiming

ToolExecution

Represents the execution of the test runner. The exit code of this tool will be used to determine if the test passed. - In response: always set - In create/update request: optional

Declaration
[JsonProperty("toolExecution")]
public virtual ToolExecution ToolExecution { get; set; }
Property Value
Type Description
ToolExecution

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX