We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm only seeing partial coverage on a function reference when running koverHtmlReport
Here is an example:
class Foo { fun bar() { print("hello") } } fun main() { val foo = Foo() print(foo::bar) // <--- Partially covered }
I would expect the foo::bar code to be covered since it's just a function reference and not an actual invocation.
foo::bar
Is there someting I'm missing here? Thanks!
gradle version: 7.1 kotlin version: 1.6.0 kotlinx-kover version: 0.5.0
The text was updated successfully, but these errors were encountered:
I got same problem.
Sorry, something went wrong.
Fixed in agent version 1.0.682
Fixed in Kover 0.6.1
0.6.1
No branches or pull requests
I'm only seeing partial coverage on a function reference when running koverHtmlReport
Here is an example:
I would expect the
foo::bar
code to be covered since it's just a function reference and not an actual invocation.Is there someting I'm missing here? Thanks!
gradle version: 7.1
kotlin version: 1.6.0
kotlinx-kover version: 0.5.0
The text was updated successfully, but these errors were encountered: