We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I haven't fully pinned it down yet, but there's some type of unexpected behavior, where:
If all of that happens, then the problem will be reported as the method being called one too many times instead of a param mismatch.
Originally observed in code like the following:
let mut g = Mock::new(); g.expect_method_1().called_once().with(any()); g.expect_method_2().called_once().with(none()); g.then(); g..expect_method1().called_once().with(any()); g.expect_method_2().called_once().with(any());
The text was updated successfully, but these errors were encountered:
[wip] Added test for #46
2b6d7fa
No branches or pull requests
I haven't fully pinned it down yet, but there's some type of unexpected behavior, where:
If all of that happens, then the problem will be reported as the method being called one too many times instead of a param mismatch.
Originally observed in code like the following:
The text was updated successfully, but these errors were encountered: