mockito / mockito-kotlin

Using Mockito with Kotlin
MIT License
3.11k stars 202 forks source link

provide InvocationOnMock instance for BDDMyOngoingStubbing#willAnswer #280

Closed unlimitedsola closed 5 years ago

unlimitedsola commented 6 years ago

This PR adds InvocationOnMock argument to willAnswer's lambda

nhaarman commented 6 years ago

This is a possible breaking change. What use cases is this necessary for? Also, can you provide a test that proves this works?

unlimitedsola commented 6 years ago

My use case is that I can get arguments from InvocationOnMock when the generated stub got invoked.

nhaarman commented 5 years ago

Could you include a test that demonstrates its use case?

unlimitedsola commented 5 years ago

@nhaarman I've provided a test case for this PR.