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
AssertEx.WaitUntil
actionAsync
Example test code:
using (AssertEx.Context(() => "baz")) await AssertEx.WaitUntil<object>(() => throw new Exception("Foo"));
Current output:
System.Exception : Foo at [stack trace]
Expected output consistent with the DoesNotThrow extension:
DoesNotThrow
Expected: value Context: timeoutSeconds = 30 totalRetries = 11 "baz" = "baz" System.Exception: Foo at [stack trace]
(with as good of an "Expected" as we can get; perhaps inferred from CallerArgumentExpression or the parameter for any follow-up expressions?)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example test code:
Current output:
Expected output consistent with the
DoesNotThrow
extension:(with as good of an "Expected" as we can get; perhaps inferred from CallerArgumentExpression or the parameter for any follow-up expressions?)
The text was updated successfully, but these errors were encountered: