cdarrigo
Results
2
comments of
cdarrigo
I'm having a similar issue. I'm use AutoFaker in my XUnit tests. In the class constructor I'm setting the Randomizer Seed value ``` public DomainUnitTest(ITestOutputHelper output) { Output = output;...
Update: I am able to reproduce this issue now using xUnit tests. Set the static seed value to a constant. ` Randomizer.Seed = new Random(420);` Create two tests that spin...