TestCaseReferenceArgs

data class TestCaseReferenceArgs(val className: Output<String>? = null, val name: Output<String>? = null, val testSuiteName: Output<String>? = null) : ConvertibleToJava<TestCaseReferenceArgs>

A reference to a test case. Test case references are canonically ordered lexicographically by these three factors: * First, by test_suite_name. * Second, by class_name. * Third, by name.

Constructors

Link copied to clipboard
fun TestCaseReferenceArgs(className: Output<String>? = null, name: Output<String>? = null, testSuiteName: Output<String>? = null)

Functions

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

Properties

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

The name of the class.

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

The name of the test case. Required.

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

The name of the test suite to which this test case belongs.