-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Ensure AssertExpectations does not fail in skipped tests #1331
Ensure AssertExpectations does not fail in skipped tests #1331
Conversation
Thanks for the PR, I'd love to see this merged. |
@ianrose14 Could you rebase your branch on top of master (and fix conflicts)? |
done! |
@dolmen Can you re-review this please? I've resolved merge conflicts. |
Code looks good. Please squash commits. |
@dolmen done! |
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.
Thank you for your contribution.
Summary
Prevent
(*Mock).AssertExpectations
from failing if test expectations are not met but the test has already been marked as "Skipped".Changes
(*Mock).AssertExpectations
such that if the*testing.T
is already marked skipped, we just return true immediately.Test_Mock_AssertExpectations_Skipped_Test
) for the new behavior.Motivation
Normally the decision to skip a test is made early in the test function, but on occasion it might be the case that you have already set up some mock expectations before you call
t.Skip
. If that's the case, then a call toAssertExpectations
will fail, which is not intended.Example usage (if applicable)
Related issues
Closes #1329