Skip to content
New issue

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

Mocking lambda that returns Nothing throws KotlinNothingValueException #960

Open
zakhenry opened this issue Nov 1, 2022 · 0 comments
Open

Comments

@zakhenry
Copy link

zakhenry commented Nov 1, 2022

Expected Behavior

The following code should work

fun main() {


    fun exampleLambdaThrows(callbackReturnsNothing: () -> Nothing) {
        callbackReturnsNothing()
    }


    val mockCallback = mockk<() -> Nothing>()

    every { mockCallback() } throws Exception("mock exception")

    assertFailsWith<Exception> {
        exampleLambdaThrows(mockCallback)
    }


    verify { mockCallback() }

}

Please describe the behavior you are expecting

Current Behavior

The code above throws Exception in thread "main" kotlin.KotlinNothingValueException

Context

Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions.

  • MockK version:
  • OS: MacOS
  • Kotlin version: 1.6.10
  • JDK version: 17.0.2
  • Type of test: unit test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant