I'm using Gradle 6.3 and Jacoco to compile, test and show coverage report. But I fail to understand why it complains there is "1 of 2 branches missed", there is no branch at all:
Here is the complete Kotlin data class:
data class ListNode<T>(var value: T, var next: ListNode<T>?) {
override fun hashCode(): Int = value.hashCode()
}
If somehow there are branches behind the scene, what are they and how do I cover them?
