Mockito Kotlin inordre

val a = ...
val b = ...

inOrder(a,b) {
  verify(a).doSomething()
  verify(b).doSomething()
}
Joyous Jackal