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
Improve the evaluation behavior significantly. In addition to what is currently possible, the following should be possible:
// calling a method (FromSeconds) to obtain the value
mock.Verify(x => x.SomeMethod(TimeSpan.FromSeconds(1))).WasCalledExactlyOnce();// performing calculations
mock.Verify(x => x.SomeMethod((37*2)/12)).WasCalledExactlyOnce();
Of course, the same should be true in the context of a When() call.
The text was updated successfully, but these errors were encountered:
Improve the evaluation behavior significantly. In addition to what is currently possible, the following should be possible:
Of course, the same should be true in the context of a
When()
call.The text was updated successfully, but these errors were encountered: