Home | History | Annotate | Download | only in littlemock

Lines Matching refs:InOrder

852       checkState(orderCounter == null || callTimeout == 0, "can't inorder verify with a timeout");
1331 /** See {@link LittleMock#inOrder(Object[])}. */
1332 public interface InOrder {
1340 * and we ignore the mocks array you pass in as an argument, you may use the returned inorder
1343 * This implementation is simple: the InOrder you get from this call can be used to verify that
1345 * this InOrder will be compared with every other verify you made, to make sure that all the
1348 public static InOrder inOrder(Object... mocks) {
1349 return new InOrder() {