steph4nc
steph4nc
This is a really old issue, but I had the same problem. There is no check to see if the select column is already added to the front, every time...
That seems to work, but only gets run once with -1. So System.ComponentModel.DataAnnotations.Range and NUnit doesn't work nicely together. It doesn't work with NUnit's [RangeAttribute](http://www.nunit.org/index.php?p=range&r=2.6.3). You can also use Enums...
This suggestion from @zvirja might be possible. ``` [Test] public void SomeTest([Values(1,2,3)] int seed, [AutoValue] string generated) { } ``` Using a custom NUnit attribute, here is the interface for...