AArnott / Xunit.Combinatorial

Adds combinatorial and pairwise testing capability to Xunit tests
Other
180 stars 16 forks source link

Support range of values #18

Closed skarllot closed 4 years ago

skarllot commented 6 years ago

Create an attribute to specify a range of values:

[Theory, CombinatorialData]
public void Copy_ToAnotherArray_CopyAllElements(
    [ValuesInRange(1, 10)] int length)
{
sharwell commented 4 years ago

This would allow Xunit.Combinatorial to replace [IterationData].