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
CancellationToken
[CancelAfter]
Repro (basically just the example from the docs:
[TestFixture] public class MyTests { [Test, CancelAfter(2000)] public void RunningTestUntilCanceled(CancellationToken token) { while (!token.IsCancellationRequested) { /* */ } } }
Expected behavior: the analyzer understand the [CancelAfter] attribute, so that the value for the argument will be given by the NUnit framework.
Actual behavior: the analyzer triggers
The text was updated successfully, but these errors were encountered:
Thanks @gfoidl that was an embarrassing oversight from me to forget about updating the analyzer. I have put it to my TODO list.
Sorry, something went wrong.
manfred-brands
Successfully merging a pull request may close this issue.
Repro (basically just the example from the docs:
Expected behavior: the analyzer understand the
[CancelAfter]
attribute, so that the value for the argument will be given by the NUnit framework.Actual behavior: the analyzer triggers

The text was updated successfully, but these errors were encountered: