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 an argument matcher that is able to capture an argument for later verification.
Potential pitfalls:
It will probably require the argument to be cloneable + 'static. This is to help prevent the argument being dropped before the slot.
It will probably require the slot to be surrounded by some sort of Rc<RefCell<T>>. This will help prevent any soundness issues with the slot being dropped before the last call to the mocked method.
Add an argument matcher that is able to capture an argument for later verification.
Potential pitfalls:
Rc<RefCell<T>>
. This will help prevent any soundness issues with the slot being dropped before the last call to the mocked method.cc: @muscovite
The text was updated successfully, but these errors were encountered: