CodeCoverageReportSummary

Contains a summary of a code coverage report.

Line coverage measures how many statements your tests cover. A statement is a single instruction, not including comments, conditionals, etc.

Branch coverage determines if your tests cover every possible branch of a control structure, such as an if or case statement.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The percentage of branches that are covered by your tests.

Link copied to clipboard

The number of conditional branches that are covered by your tests.

Link copied to clipboard

The number of conditional branches that are not covered by your tests.

Link copied to clipboard

The percentage of lines that are covered by your tests.

Link copied to clipboard

The number of lines that are covered by your tests.

Link copied to clipboard

The number of lines that are not covered by your tests.

Functions

Link copied to clipboard
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String