-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: document Start and Await methods and mocks #14375
Changes from 5 commits
618569a
fbdbf36
683ed19
c6e6836
644f778
8f0e28b
86437a0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,17 @@ breaking changes in the upcoming 3.x release. This release is scheduled for | |
|
||
## v2.26.0 - TBD | ||
|
||
### BREAKING TESTING CHANGES | ||
If you don't have tests that `EXPECT_CALL` on methods in `MockConnection` that | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FTR,
|
||
perform Long Running Operations (LRO), these changes will not affect you. | ||
|
||
With the addition of new methods to support starting Long Running Operations | ||
(LRO) synchronously and awaiting their completion separately, the overload set | ||
for the preexisting LRO methods have been expanded. Uses of `EXPECT_CALL` that | ||
do not have matchers for the arguments will be ambiguous. To quickly remedy this | ||
change instances of `EXPECT_CALL(*mock, Method)` to | ||
`EXPECT_CALL(*mock, Method(_))`. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. optional: we wouldn't write this, but maybe |
||
|
||
### New Libraries | ||
|
||
We are happy to announce the following GA libraries. Unless specifically noted, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: doesn't matter, but line break?