Alias to inOrder.verify(mock, times(1))
Example:
InOrder inOrder = inOrder(firstMock, secondMock); inOrder.verify(firstMock).someMethod("was called first"); inOrder.verify(secondMock).someMethod("was called second"); See examples in javadoc for {@link Mockito} class
@param mock to be verified
@return mock object itself
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |