XUnitReport

data class XUnitReport(val tests: Int, val skipped: Int, val failures: Int, val errors: Int, val testsuites: List<XUnitReport.TestSuite>)

Constructors

Link copied to clipboard
constructor(tests: Int, skipped: Int, failures: Int, errors: Int, testsuites: List<XUnitReport.TestSuite>)

Types

Link copied to clipboard
data class AbnormalResult(val category: XUnitReport.AbnormalResult.Category, val message: String?, val type: String?, val context: String)
Link copied to clipboard
object Companion
Link copied to clipboard
data class TestCase(val name: String, val displayName: String, val classname: String, val failures: List<XUnitReport.AbnormalResult>)
Link copied to clipboard
data class TestSuite(val name: String, val displayName: String, val tests: Int, val failures: Int, val skipped: Int, val errors: Int, val testcases: List<XUnitReport.TestCase>)

Properties

Link copied to clipboard
val errors: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tests: Int
Link copied to clipboard