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
nunit/nunit#4632 added support for generic test case parameters:
NUnit1001 detects if TestCase arguments don't match parameters.
TestCase
[TestCase(1)] public void SomeTest(string s) { }
This has to be augmented to support generic versions:
[TestCase<double>(1)] public void SomeTest(string s) { }
The text was updated successfully, but these errors were encountered:
manfred-brands
Successfully merging a pull request may close this issue.
nunit/nunit#4632 added support for generic test case parameters:
NUnit1001 detects if
TestCase
arguments don't match parameters.This has to be augmented to support generic versions:
The text was updated successfully, but these errors were encountered: