JUnitXMLFile
data class JUnitXMLFile(val name: String, val tests: Int, val skipped: Int, val failures: Int, val errors: Int, val time: Duration, val hostname: String, val timestamp: Instant, val properties: List<JUnitXMLFile.Property>, val testcases: List<JUnitXMLFile.TestCase>, val systemOut: JUnitXMLFile.SystemOut)
Constructors
Link copied to clipboard
constructor(name: String, tests: Int, skipped: Int, failures: Int, errors: Int, time: Duration, hostname: String, timestamp: Instant, properties: List<JUnitXMLFile.Property>, testcases: List<JUnitXMLFile.TestCase>, systemOut: JUnitXMLFile.SystemOut)
Types
Link copied to clipboard
data class TestCase(val name: String, val classname: String, val time: Duration, val failures: List<XUnitReport.AbnormalResult>, val systemOut: JUnitXMLFile.SystemOut)