Verifies interaction happened once in order. Alias to inOrder.verify(mock, times(1)) Example: InOrder inOrder = inOrder(firstMock, secondMock); inOrder.verify(firstMock).someMethod("was called first"); inOrder.verify(secondMock).some
(T mock)
| 72 | * @return mock object itself |
| 73 | */ |
| 74 | <T> T verify(T mock); |
| 75 | |
| 76 | /** |
| 77 | * Verifies interaction in order. E.g: |
no outgoing calls