total

abstract fun total(config: Action<KoverReportSetConfig>)(source)

Configure reports for all code of current project and kover dependencies.

example:

kover {
     reports {
         total {
             filters {
                 // override report filters for total reports
             }
             html {
                 // configure HTML report for all code of current project and `kover` dependencies.
             }
             xml {
                 // configure XML report for all code of current project and `kover` dependencies.
             }
             verify {
                 // configure coverage verification all code of current project and `kover` dependencies.
             }

             additionalBinaryReports.add(file("path/to/the/file.ic"))
         }
     }
}

Instance to configuring of reports for all code of current project and kover dependencies.

See details in total.