Is there a way in AutoFixture that fixture.Create<string>() gives the same result? Ie, is it possible to initialize the device using a seed?
Update
To be more precise, I am looking for a random value generator that is initialized with some random seed, which is also output if the test fails. So I can take the seed for this particular test run and run the test with the fixed seed again. Seed should apply to all instances, regardless of type. I think this is the most powerful way to use random values ββin tests, because it has huge coverage and is also reproducible.
source share