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
This applies to (at least) TestCase, TestCaseSource, Theory and Values attributes.
Simple test example that fails:
[FixtureLifeCycle(LifeCycle.InstancePerTestCase)] public class FixtureWithTestCases { private int _counter; [TestCase(0)] [TestCase(1)] [TestCase(2)] [TestCase(3)] public void Test(int _) { Assert.AreEqual(0, _counter++); } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This applies to (at least) TestCase, TestCaseSource, Theory and Values attributes.
Simple test example that fails:
The text was updated successfully, but these errors were encountered: