Feature request
Add support to passing tuples in inline parameter values. This would simplify passing complex values while using combinatorial and pairwise test cases generation.
Example usage:
[Test]
public void Test
(
[Values(new object[] {"a", 1}, new object[] {"b", 2})]
(string, int) a,
[Values(1, 2, 3)]
int b
)
Currently it can be achieved with ValueSource. Note that this feature will also need an update to NUnit1031 diagnostic.
Feature request
Add support to passing tuples in inline parameter values. This would simplify passing complex values while using combinatorial and pairwise test cases generation.
Example usage:
Currently it can be achieved with
ValueSource. Note that this feature will also need an update toNUnit1031diagnostic.