Jonathan Gilbert
Jonathan Gilbert
What does this mean exactly? Mutation testing is a thing that makes random changes to the code and then sees whether they are detected in the form of test failures?...
That's pretty cool :-)
I have created an issue: #1896.
@dennisdoomen Implementation has been changed to expose a new interface instead of the concrete type. This interface serves the same purpose for identifying the wrapper and providing access to the...
It is also possible to create your own `Faker` object and assign it as the `FakerHub` for an `AutoFaker`. This allows the same `Faker` to be shared by multiple different...
Whether it's global or not depends on how you're obtaining `AutoFaker` and/or `AutoFaker` instances. It's not inherently global. * `AutoFaker.Create` takes a callback parameter to which it passes an `IAutoGenerateConfigBuilder`....
Am I misunderstanding -- by running the tests in parallel, aren't they pulling numbers concurrently from the same underlying source??
I can add that since this crash is occurring during the deletion of an object, I decided to see what would happen if I worked around it. I went to...
Thanks! I updated my data pump accordingly: ``` while (true) { int bytesRead = await responseStream.ReadAsync(buffer, 0, buffer.Length, context.RequestAborted); if (bytesRead < 0) throw new Exception("I/O error"); if (bytesRead ==...
Hmm, that's a really good question. I'll have to go and take a look at how things are _currently_ documented. Without having yet done that, off the top of my...