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
As alternative to IEnumerable<object[]> and IEnumerable<(Value)Tuple<...>> we could offer a new type, that people could use for their data source.
IEnumerable<object[]>
IEnumerable<(Value)Tuple<...>>
For inspiration, xUnit has TheoryData which provides type-safe dynamic data. See e.g. https://andrewlock.net/creating-strongly-typed-xunit-theory-test-data-with-theorydata/. Especially the last code-snippet shows how how concise it can be used.
TheoryData
Originally posted by @jnyrup in #1335 (comment)
AB#2332769
The text was updated successfully, but these errors were encountered:
Youssef1313
Successfully merging a pull request may close this issue.
As alternative to
IEnumerable<object[]>
andIEnumerable<(Value)Tuple<...>>
we could offer a new type, that people could use for their data source.For inspiration, xUnit has
TheoryData
which provides type-safe dynamic data.See e.g. https://andrewlock.net/creating-strongly-typed-xunit-theory-test-data-with-theorydata/.
Especially the last code-snippet shows how how concise it can be used.
Originally posted by @jnyrup in #1335 (comment)
AB#2332769
The text was updated successfully, but these errors were encountered: