kotlinx-kover icon indicating copy to clipboard operation
kotlinx-kover copied to clipboard

Results 101 kotlinx-kover issues
Sort by recently updated
recently updated
newest added

**Describe the bug** Consider the following function: ```kotlin inline fun flowTest(): Flow { return flow { for (i in range(1, 10)) { emit(i) } } } ``` and the following...

Bug
S: untriaged

**Describe the bug** I'm using the kover plugin with the following configuration: ```kotlin kover { reports { total { html { onCheck = true } } } } ``` The...

Bug
S: untriaged

**Kover incorrectly reports a gap in branch coverage** Consider this class: ```kotlin class KoverExample { private val map = mapOf String>( 1 to { "Fred" }, 2 to { "Joe"...

Bug
S: postponed
Check In JaCoCo

**What is your use-case and why do you need this feature?** With the recent release of the [compose-screenshot-testing](https://developer.android.com/studio/preview/compose-screenshot-testing) library by Google, I'm wondering if it's possible to integrate screenshot tests...

Feature
Implement in KGP

We have decided to transition to using the JaCoCo agent for Kotlin Coverage. As part of this change, the current IntelliJ agent, used in the existing Kover Gradle and Maven...

**Describe the bug** Under certain circumstances - it seems related to `@JvmOverloads` functions with defaults, Kover produces line coverage information that are neither covered nor uncovered. In this example, line...

Bug

**Describe the bug** Code Coverage is calculated incorrectly. This happens in reports and verification tasks. **Errors** As you can see in this picture: ![Snímek obrazovky 2024-10-25 v 17 24 19](https://github.com/user-attachments/assets/2e11a8a0-b141-4f12-8d30-d70610c45a83)...

Bug

From now on, we will begin integrating the Kotlin Coverage into the Kotlin Gradle Plugin. This is a task to implement the ideas mentioned in #608. Motivation remains, but the...

Implement in KGP

**Describe the bug** Dagger generates code that looks like this: ```kotlin @ScopeMetadata @QualifierMetadata @DaggerGenerated @Generated( value = "dagger.internal.codegen.ComponentProcessor", comments = "https://dagger.dev" ) @SuppressWarnings({ "unchecked", "rawtypes", "KotlinInternal", "KotlinInternalInJava", "cast", "deprecation" })...

Bug
Implement in KGP

It would be nice to be able to verify the method % coverage shown in the report. We currently verify on 90% instructions per class, but we always want to...

Feature
S: postponed