class JacocoResultsParser: Any
      
Constructors
| Name | Description | 
|---|---|
| constructor() | Utility for parsing Jacoco coverage results from a String. | 
Methods
parseCsv
        fun parseCsv(content: String): JacocoResults
      
Parses from a String the test results of testing a single Test class.
Parameters
| Name | Description | 
|---|---|
| content: String | is a String containing the contents of a CSV file with a Jacoco report. | 
ReturnValue
| Name | Description | 
|---|---|
| JacocoResults | a JacocoResults | 
Utility for parsing Jacoco coverage results from a String.