Test Execution Step Args
data class TestExecutionStepArgs(val testIssues: Output<List<TestIssueArgs>>? = null, val testSuiteOverviews: Output<List<TestSuiteOverviewArgs>>? = null, val testTiming: Output<TestTimingArgs>? = null, val toolExecution: Output<ToolExecutionArgs>? = null) : ConvertibleToJava<TestExecutionStepArgs>
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.
Constructors
Link copied to clipboard
fun TestExecutionStepArgs(testIssues: Output<List<TestIssueArgs>>? = null, testSuiteOverviews: Output<List<TestSuiteOverviewArgs>>? = null, testTiming: Output<TestTimingArgs>? = null, toolExecution: Output<ToolExecutionArgs>? = null)
Functions
Properties
Link copied to clipboard
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)