data class JUnitSummary: Any
      
Fields
| Name | Description | 
|---|---|
| val progress: Int | |
| val numTests: Int | is an Int | 
| val numFailures: Int | is an Int representing the number of failed tests | 
| val numErrors: Int | is an Int representing the number of tests that resulted in a runtime error (e.g. "ArrayIndexOutOfBoundsException") | 
| val numSkipped: Int | is an Int | 
| val ellapsed: Float | is a Float representing the time that the execution of the tests took | 
Constructors
<init>
        constructor(numTests: Int, numFailures: Int, numErrors: Int, numSkipped: Int, ellapsed: Float)
      
Represents the summary of execution of a set of JUnit Tests.
Parameters
| Name | Description | 
|---|---|
| numTests: Int | |
| numFailures: Int | |
| numErrors: Int | |
| numSkipped: Int | |
| ellapsed: Float | 
Methods
toStr
        fun toStr(): String
      
ReturnValue
| Name | Description | 
|---|---|
| String | 
Represents the summary of execution of a set of JUnit Tests.