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
Fix DoAll to work with move-only sink arguments.
This changes types of the first n - 1 actions so that they only get a readonly
view of the arguments. The last action will accept move only objects.
PiperOrigin-RevId: 324600664
|`DoAll(a1, a2, ..., an)`| Do all actions `a1` to `an` and return the result of `an` in each invocation. The first `n - 1` sub-actions must return void. |
619
+
|`DoAll(a1, a2, ..., an)`| Do all actions `a1` to `an` and return the result of `an` in each invocation. The first `n - 1` sub-actions must return void and will receive a readonly view of the arguments. |
620
620
|`IgnoreResult(a)`| Perform action `a` and ignore its result. `a` must not return void. |
621
621
|`WithArg<N>(a)`| Pass the `N`-th (0-based) argument of the mock function to action `a` and perform it. |
622
622
|`WithArgs<N1, N2, ..., Nk>(a)`| Pass the selected (0-based) arguments of the mock function to action `a` and perform it. |
0 commit comments