Mockk overload ambiguity

Anyway around this?

@Test
fun `email producer - sad path`() {
    val result = sut.send(email)
    assert(!result)
    verify { errorsCounter.increment() }
    verify { **counter::increment** wasNot Called }

}

Overload resolution ambiguity. All these functions match.
public open fun increment(): Unit defined in io.micrometer.core.instrument.Counter
public abstract fun increment(amount: Double): Unit defined in io.micrometer.core.instrument.Counter

You could use the type inference workaround to help.
Here’s a runnable/editable example:

// Two overloaded functions of the same name
fun foo() = println("foo()")
fun foo(num: Int) = println("foo(Int)")

fun main() {
    val f1: () -> Unit = ::foo
    val f2: (Int) -> Unit = ::foo
    
    f1()
    f2(5)
}
1 Like