Test Id
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
work Unit Name
Work unit name that executed the test.
suite Name
Suite name of the test, in most cases the class name.
test Name
Name of the test. null when the test is a suite.