Kover Report Filter
Exclusion or inclusion class filter for Kover reports.
Exclusions example for Kotlin:
excludes {
classes("*.foo.Bar", "*.M?Class")
classes(listOf("*.foo.Bar", "*.M?Class"))
packages("foo.b?r", "com.*.example")
val somePackages =
packages(listOf("foo.b?r", "com.*.example"))
annotatedBy("*Generated*", "com.example.KoverExclude")
projects.add(":my:lib*")
}
Content copied to clipboard
Functions
Link copied to clipboard
Add all classes generated by Android plugin to filters.
Link copied to clipboard
Add to filters all classes and functions marked by specified annotations.
Link copied to clipboard
Filter classes extending at least one of the specified classes or implementing at least one of the interfaces. The class itself with the specified name is not taken into account.
Link copied to clipboard