TestIssueArgs

data class TestIssueArgs(val category: Output<TestIssueCategory>? = null, val errorMessage: Output<String>? = null, val severity: Output<TestIssueSeverity>? = null, val stackTrace: Output<StackTraceArgs>? = null, val type: Output<TestIssueType>? = null, val warning: Output<AnyArgs>? = null) : ConvertibleToJava<TestIssueArgs>

An issue detected occurring during a test execution.

Constructors

Link copied to clipboard
fun TestIssueArgs(category: Output<TestIssueCategory>? = null, errorMessage: Output<String>? = null, severity: Output<TestIssueSeverity>? = null, stackTrace: Output<StackTraceArgs>? = null, type: Output<TestIssueType>? = null, warning: Output<AnyArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val category: Output<TestIssueCategory>? = null

Category of issue. Required.

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

A brief human-readable message describing the issue. Required.

Link copied to clipboard
val severity: Output<TestIssueSeverity>? = null

Severity of issue. Required.

Link copied to clipboard
val stackTrace: Output<StackTraceArgs>? = null

Deprecated in favor of stack trace fields inside specific warnings.

Link copied to clipboard
val type: Output<TestIssueType>? = null

Type of issue. Required.

Link copied to clipboard
val warning: Output<AnyArgs>? = null

Warning message with additional details of the issue. Should always be a message from com.google.devtools.toolresults.v1.warnings