You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps: I'm using jacoco tool for code coverage reporting in my Android project. After I incremented the Kotlin version from 1.4.10 to 1.4.20, jacoco reports started showing coverages for viewModelScope.launch { ... } blocks as "partially covered". Whereas in version 1.4.10, they were fully covered.
Expected behaviour
viewModelScope.launch { ... } should be marked as fully covered by jacoco for Kotlin 1.4.20.
Actual behaviour
Jacoco report says "2 of 3 branches missed" forviewModelScope.launch { ... } block. So it's only partially covered: