TestCaseReferenceResponse

data class TestCaseReferenceResponse(val className: String, val name: String, val testSuiteName: String)

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 TestCaseReferenceResponse(className: String, name: String, testSuiteName: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name of the class.

Link copied to clipboard

The name of the test case. Required.

Link copied to clipboard

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