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
The ExpectNotSend method on the Saga<T> class that accepts an Action<TMessage> is calling ExpectSend instead of ExpectNotSend.
ExpectNotSend
Saga<T>
Action<TMessage>
ExpectSend
Any user using this overload of the ExpectNotSend method.
A test written using this method would fail when a message was not sent instead of passing as expected.
The text was updated successfully, but these errors were encountered:
Fixed by #107
Sorry, something went wrong.
No branches or pull requests
The
ExpectNotSend
method on theSaga<T>
class that accepts anAction<TMessage>
is callingExpectSend
instead ofExpectNotSend
.Who's affected
Any user using this overload of the
ExpectNotSend
method.Symptoms
A test written using this method would fail when a message was not sent instead of passing as expected.
The text was updated successfully, but these errors were encountered: