You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix regression due to runBlocking being unavailable (#575)
Introduce fallback to the runBlocking function in case kotlinx-coroutines-core library (with the runBlocking function in it) is not on the classpath.
Also adds a new module for testing Mockito-kotlin in a context without coroutine infrastructure (e.g. runBlocking) on the classpath
Improve stubbing support for suspend functions and value classes (#569)
Introduces `CoroutineAwareAnswer` to allow for lazy wrapping Mockito
answers in suspend lambda when stubbed function is invoked. It also adds
support for other primitive value classes (boolean and char value classes).