Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fscheck/FsCheck
Random Testing for .NET
https://github.com/fscheck/FsCheck
csharp fscheck fsharp quickcheck testing
Last synced: 9 days ago
JSON representation
Random Testing for .NET
- Host: GitHub
- URL: https://github.com/fscheck/FsCheck
- Owner: fscheck
- License: bsd-3-clause
- Created: 2013-06-19T11:46:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-08-31T13:33:37.000Z (2 months ago)
- Last Synced: 2024-10-16T21:26:51.099Z (19 days ago)
- Topics: csharp, fscheck, fsharp, quickcheck, testing
- Language: F#
- Homepage: https://fscheck.github.io/FsCheck/
- Size: 16.8 MB
- Stars: 1,166
- Watchers: 42
- Forks: 156
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
- awesome-dotnet-core - FsCheck - Random Testing for .NET. (Frameworks, Libraries and Tools / Functional Programming)
- fucking-awesome-dotnet-core - FsCheck - Random Testing for .NET. (Frameworks, Libraries and Tools / Functional Programming)
- awesome-dotnet-core - FsCheck - Random Testing for .NET. (Frameworks, Libraries and Tools / Functional Programming)
- awesome-dotnet-core - FsCheck - FsCheck是用于自动测试.NET程序的工具。 (框架, 库和工具 / 响应式编程)
README
# What is FsCheck?
FsCheck is a tool for testing .NET programs automatically. The programmer provides a specification of the program, in the form of properties that 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 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.
FsCheck is a port of Haskell's [QuickCheck](http://www.cse.chalmers.se/~rjmh/QuickCheck/). Important parts of the [manual](https://fscheck.github.io/FsCheck/) for using FsCheck are almost literally adapted from the QuickCheck [manual](http://www.cse.chalmers.se/~rjmh/QuickCheck/manual.html). Any errors and omissions are entirely my responsibility.
Since v0.5, [scalacheck](https://github.com/rickynils/scalacheck) has influenced FsCheck as well. Scalacheck is itself a port of QuickCheck to Scala.
FsCheck's generator combinators can be used in any testing framework to easily generate random values for many types, and FsCheck itself integrates nicely with existing unit testing frameworks such as NUnit, xUnit, MSTest and MbUnit.
# Releases on Nuget
* [FsCheck](http://nuget.org/List/Packages/FsCheck)
* [FsCheck.Xunit](http://nuget.org/List/Packages/FsCheck.Xunit)
* [FsCheck.Nunit](http://www.nuget.org/packages/FsCheck.Nunit/)FsCheck follows [Semantic Versioning 2.0.0](http://semver.org/spec/v2.0.0.html), except for the API exposed in `FsCheck.Experimental` which is subject to change at any time.
All AppVeyor builds are available using the NuGet feed:
If using Paket, add the source at the top of `paket.dependencies`.
```paket
source https://www.nuget.org/api/v2
source https://ci.appveyor.com/nuget/fscheck
```See the build history for a list of available versions:
Here are some options for specifying the dependency:
```paket
nuget FsCheck
nuget FsCheck prerelease
nuget FsCheck 2.0.4
nuget FsCheck 2.0.5-b247
```# Documentation
* [English](https://fscheck.github.io/FsCheck/)
# Contributing
Pull requests are very welcome!
Check out the issues marked "good first issue" and "help wanted" if you need any inspiration.
We rarely reject PRs. If you intend to make a bigger change, it's better to open an issue first to discuss.
## Development
FsCheck uses standard .NET package management via NuGet and is built, tested and packaged via typical usage of `dotnet`.
To get started, check out the repository and run `dotnet build` to build. Use `dotnet test .\tests\FsCheck.Test\` to run the tests. If that passes after you've changed some code, you are ready to send a Pull Request!
For Visual Studio/MonoDevelop/Xamarin Studio/VsCode: open (the folder that contains) FsCheck.sln and start coding. Building and running tests in IDEs should work out of the box.
FsCheck uses a build script inspired by FAKE. Run `build.[cmd|sh] -t ` (or `dotnet fsi build.fsx -t `) to do something. Important targets are:
* `Build`: cleanly builds in Release mode.
* `Tests`: builds and runs the tests.
* `Docs`: builds and generates documentation. FsCheck uses FSharp.Formatting, so literate fsx files in the docs folder.
* `WatchDocs`: convenient when developing documentation - starts a local webserver and watches for changes in the docs folder.
* `NuGetPack`: Creates NuGet packages.
* `CI`: Target that is run on AppVeyor, basically all of the above.## CI
AppVeyor [![Build status](https://ci.appveyor.com/api/projects/status/7ytaslpgxxtw7036/branch/master)](https://ci.appveyor.com/project/kurtschelfthout/fscheck)