You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a matcher `testing::ReturnRoundRobin` which, on each call, returns the next element in the sequence, restarting at the beginning once it has reached the end.
PiperOrigin-RevId: 276312136
| `Return()` | Return from a `void` mock function. |
509
-
| `Return(value)` | Return `value`. If the type of `value` is different to the mock function's return type, `value` is converted to the latter type <i>at the time the expectation is set</i>, not when the action is executed. |
510
-
| `ReturnArg<N>()` | Return the `N`-th (0-based) argument. |
511
-
| `ReturnNew<T>(a1, ..., ak)` | Return `new T(a1, ..., ak)`; a different object is created each time. |
512
-
| `ReturnNull()` | Return a null pointer. |
513
-
| `ReturnPointee(ptr)` | Return the value pointed to by `ptr`. |
514
-
| `ReturnRef(variable)` | Return a reference to `variable`. |
515
-
| `ReturnRefOfCopy(value)` | Return a reference to a copy of `value`; the copy lives as long as the action. |
| `Return()` | Return from a `void` mock function. |
509
+
| `Return(value)` | Return `value`. If the type of `value` is different to the mock function's return type, `value` is converted to the latter type <i>at the time the expectation is set</i>, not when the action is executed. |
510
+
| `ReturnArg<N>()` | Return the `N`-th (0-based) argument. |
511
+
| `ReturnNew<T>(a1, ..., ak)` | Return `new T(a1, ..., ak)`; a different object is created each time. |
512
+
| `ReturnNull()` | Return a null pointer. |
513
+
| `ReturnPointee(ptr)` | Return the value pointed to by `ptr`. |
514
+
| `ReturnRef(variable)` | Return a reference to `variable`. |
515
+
| `ReturnRefOfCopy(value)` | Return a reference to a copy of `value`; the copy lives as long as the action. |
516
+
| `ReturnRoundRobin({a1, ..., ak})` | Each call will return the next `ai` in the list, starting at the beginning when the end of the list is reached. |
0 commit comments