Christer van der Meeren
Christer van der Meeren
No, that does the opposite. It treats throws as failures. I want to test that a function does indeed throw an exception (the test should fail if nothing is thrown)....
Yes. See my [example above](https://github.com/hedgehogqa/fsharp-hedgehog/issues/128#issuecomment-335400553) for a suggestion of a nice and short syntax: ```f# Property.checkThrows ``` I suggest that the default behavior is that the test passes if `ArgumentException`...
I don't care too much about the style used in Hedgehog.Experimental. I'd be surprised if it's at all consistent there; there's probably one style from stuff originally from someone else,...
Configuring Fantomas is simple. Just place an `.editorconfig` in the repo root, have it contain [everything listed here](https://github.com/fsprojects/fantomas/blob/master/docs/Documentation.md#configuration), and tweak to your liking (see the rest of the document linked...
> Including an explicit version of these settings in our own `.editorconfig` file is better both because this ensures consistency among developers and because it is more readable. Yep, though...
I guess you could rename `i` to `_i` to work around it.
Would love for Hedgehog to be faster. While I will continue using Hedgehog over FsCheck due to integrated shrinking, the significantly slower performance is a notable drawback in several of...
Actually it happens with simple ints too. See below (I have assumed that by default, FsCheck generates ints from -100 to 100 at max size): ```f# module H = open...
Thrilled as I am about Hedgehog (as you probably can tell from the number of issues I've posted the last few days), I'm sad to say that an order-of-magnitude difference...