FsCheck icon indicating copy to clipboard operation
FsCheck copied to clipboard

Random Testing for .NET

Results 36 FsCheck issues
Sort by recently updated
recently updated
newest added

I'm thinking on the case when I detect an issue in one of my property tests, I usually copy the seed and add a new method `OriginalTest_Regresion2` just to test...

From my experience with other QuickCheck libraries, I was surprised by the prevalence of ("", 0) in this: ``` > Gen.sample 10 10 Arb.from.Generator;; val it : (string * int)...

enhancement
vNext

The code below does not fail in v3. This seems similar to #30 (v2 does still return nulls). ``` [Property] public Property Test(string s) { return (s != null).Collect(s); }...

enhancement

I'm unable to return a Property from async tests. I'm not sure if the issue is more or less a missing overload in the api or if things are more...

bug
v3

I want to test `internal` stuff (using `InternalsVisibleTo` on the main assembly). Specifically, I want FsCheck to generate instances of internal types. This seems to be a bit hit-and-miss, and...

enhancement
help wanted

Would it be possible to support NUnits ValueFormatters configured with TestContext.AddFormatter für FsCheck.Nunit tests?

enhancement
help wanted
good first issue

I would like to be able to dynamically generate arbitraries for classes that are not know to FsCheck or not registered yet. Is it possible to register such a class...

``` JSON { "version": "1.0.0-*", "testRunner": "mstest",   "dependencies": { "MSTest.TestAdapter": "1.1.8-rc", "MSTest.TestFramework": "1.0.8-rc", "Microsoft.NETCore.App": { "version": "1.1.0", "type": "platform" }, "dotnet-test-mstest": "1.1.2-preview", }, "frameworks": { "netcoreapp1.1": { "imports": [ "dnxcore50",...

enhancement
help wanted

Came up in #526 Adding this would bring the NUnit integration to feature parity.

enhancement
help wanted
good first issue

Hi there, I wanted to check if there was any current support for parallel / concurrent model based testing to assert against race conditions and other fun stuff, like what...

enhancement