TestSuiteOverviewArgs

data class TestSuiteOverviewArgs(val elapsedTime: Output<DurationArgs>? = null, val errorCount: Output<Int>? = null, val failureCount: Output<Int>? = null, val flakyCount: Output<Int>? = null, val name: Output<String>? = null, val skippedCount: Output<Int>? = null, val totalCount: Output<Int>? = null, val xmlSource: Output<FileReferenceArgs>? = null) : ConvertibleToJava<TestSuiteOverviewArgs>

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.

Constructors

Link copied to clipboard
fun TestSuiteOverviewArgs(elapsedTime: Output<DurationArgs>? = null, errorCount: Output<Int>? = null, failureCount: Output<Int>? = null, flakyCount: Output<Int>? = null, name: Output<String>? = null, skippedCount: Output<Int>? = null, totalCount: Output<Int>? = null, xmlSource: Output<FileReferenceArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TestSuiteOverviewArgs

Properties

Link copied to clipboard
val elapsedTime: Output<DurationArgs>? = null

Elapsed time of test suite.

Link copied to clipboard
val errorCount: Output<Int>? = null

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

Link copied to clipboard
val failureCount: Output<Int>? = null

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

Link copied to clipboard
val flakyCount: Output<Int>? = null

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.

Link copied to clipboard
val name: Output<String>? = null

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

Link copied to clipboard
val skippedCount: Output<Int>? = null

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

Link copied to clipboard
val totalCount: Output<Int>? = null

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

Link copied to clipboard
val xmlSource: Output<FileReferenceArgs>? = null

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