TestId

data class TestId(@Json(name = "workUnitName") val workUnitName: String, @Json(name = "suiteName") val suiteName: String, @Json(name = "testName") val testName: String? = null)

Information required to uniquely identify a test.

Parameters

workUnitName

Work unit name that executed the test.

suiteName

Suite name of the test, in most cases the class name.

testName

Name of the test. null when the test is a suite.

Constructors

Link copied to clipboard
constructor(@Json(name = "workUnitName") workUnitName: String, @Json(name = "suiteName") suiteName: String, @Json(name = "testName") testName: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard