How do I apply a configuration to a suite of property-based tests?
I tried the following:
let config = { Config.Quick with MaxTest = 10000
QuietOnSuccess = true }
[<Property(Config=config)>] // Doesn't work because "Config" is a private member
let ``my property-based test`` () =
...
However, the Config
member is set to private and will not compile.
Any suggestions?