fsharp-hedgehog-experimental icon indicating copy to clipboard operation
fsharp-hedgehog-experimental copied to clipboard

Hedgehog with batteries included: Auto-generators, extra combinators, and more.

Results 3 fsharp-hedgehog-experimental issues
Sort by recently updated
recently updated
newest added

Just noticed (from static reading of the code) that the auto-generator seems to always generate `DateTimeOffset` values with zero offset: https://github.com/hedgehogqa/fsharp-hedgehog-experimental/blob/6d8719aaa6568c51478a39e2ad76afbcd43d5b8e/src/Hedgehog.Experimental/Gen.fs#L383 If that is the case, it is probably a...

It looks like the library consists of two parts: 1. A set of useful extensions for `Hedgehog`. These are all these `sorted`, `noNull`, `shuffle`, `uri` generators and operations on them...

PR #21 added a configuration value called `RecursionDepth` to prevent stack overflows when generating a recursive type (c.f. https://github.com/hedgehogqa/fsharp-hedgehog-experimental/issues/19#issuecomment-359886908). [FsCheck solves this problem](https://fscheck.github.io/FsCheck/TestData.html#main:~:text=However%2C%20a%20recursive%20generator%20like%20this,always%20use%20the%20size%20control%20mechanism) by relating the recursion depth to the...