FsCheck 2.2.4

dotnet add package FsCheck --version 2.2.4
NuGet\Install-Package FsCheck -Version 2.2.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FsCheck" Version="2.2.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FsCheck --version 2.2.4
#r "nuget: FsCheck, 2.2.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FsCheck as a Cake Addin
#addin nuget:?package=FsCheck&version=2.2.4

// Install FsCheck as a Cake Tool
#tool nuget:?package=FsCheck&version=2.2.4

FsCheck is a tool for testing .NET programs automatically. The programmer provides
a specification of the program, in the form of properties which functions, methods
or objects should satisfy, and FsCheck then tests that the properties hold in a
large number of randomly generated cases.

While writing the properties, you are actually writing a testable specification of your program.

Specifications are expressed in F#, C# or VB, using combinators defined
in the FsCheck library. FsCheck provides combinators to define properties,
observe the distribution of test data, and define test data generators.
When a property fails, FsCheck automatically displays a minimal counter example.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (17)

Showing the top 5 popular GitHub repositories that depend on FsCheck:

Repository Stars
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
akkadotnet/akka.net
Canonical actor model implementation for .NET with local + distributed actors in C# and F#.
commandlineparser/commandline
The best C# command line parser that brings standardized *nix getopt style, for .NET. Includes F# support
AutoFixture/AutoFixture
AutoFixture is an open source library for .NET designed to minimize the 'Arrange' phase of your unit tests in order to maximize maintainability. Its primary goal is to allow developers to focus on what is being tested rather than how to setup the test scenario, by making it easier to create object graphs containing test data.
microsoft/onefuzz
A self-hosted Fuzzing-As-A-Service platform
Version Downloads Last updated
2.2.4 295 12/17/2015
2.2.3 958 11/26/2015
2.2.2 1,573 11/14/2015
2.2.1 662 11/5/2015
2.2.0 527 11/1/2015
2.1.0 3,154 9/30/2015
2.0.7 3,527 8/20/2015
2.0.6 353 8/14/2015
2.0.5 3,100 7/31/2015
2.0.4 992 7/20/2015
2.0.3 3,623 7/10/2015
2.0.2 152 7/7/2015
2.0.1 5,204 5/23/2015
2.0.1-rc1 73 5/23/2015
2.0.0-alpha 126 4/27/2015
1.0.4 9,719 12/9/2014
1.0.3 2,073 11/18/2014
1.0.2 680 10/27/2014
1.0.1 1,238 10/18/2014
1.0.0 2,534 8/3/2014
0.9.4 10,596 5/24/2014
0.9.3 521 5/9/2014
0.9.2 12,950 11/7/2013
0.9.1 2,697 7/2/2013
0.9.0.1 161 6/21/2013
0.9.0 239 6/18/2013
0.8.3 914 8/26/2012
0.8.2 304 7/4/2012
0.8.1 233 6/25/2012
0.7.1 661 5/29/2011

Fix output of FsCheck.Xunit - was not correctly reported in all runners (by Matt Ellis)
Allow shrinking null for C# compatibility (by William Pleasant-Ryan)
Fix default generators to not rely on static dictionary - this caused some weird side-effects and behavior when overriding default generators.