in Order
Creates KInOrder object that allows verifying mocks in order.
Wrapper for Mockito.inOrder that also allows to verify suspending method calls.
Creates KInOrder object that allows verifying mocks in order. Accepts a lambda to allow easy evaluation.
Wrapper for Mockito.inOrder that also allows to verify suspending method calls.
Allows KInOrder verification for a single mocked instance:
mock.inOrder { verify().foo() verifyBlocking { bar() } }