CsCheck 2.1.0
See the version list below for details.
dotnet add package CsCheck --version 2.1.0
NuGet\Install-Package CsCheck -Version 2.1.0
<PackageReference Include="CsCheck" Version="2.1.0" />
paket add CsCheck --version 2.1.0
#r "nuget: CsCheck, 2.1.0"
// Install CsCheck as a Cake Addin
#addin nuget:?package=CsCheck&version=2.1.0
// Install CsCheck as a Cake Tool
#tool nuget:?package=CsCheck&version=2.1.0
CsCheck is a C# random testing library inspired by QuickCheck.
It differs in that generation and shrinking are both based on PCG, a fast random number generator.
This gives the following advantages:
- Automatic shrinking. Gen classes are composable with no need for Arb classes. So less boilerplate.
- Random testing and shrinking are parallelized. This and PCG make it very fast.
- Shrunk cases have a seed value. Simpler examples can easily be reproduced.
- Shrinking can be continued later to give simpler cases for high dimensional problems.
- Concurrency testing and random shrinking work well together.
CsCheck also makes concurrency, performance and regression testing simple and fast.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on CsCheck:
Repository | Stars |
---|---|
dotnet/orleans
Cloud Native application framework for .NET
|
|
ReubenBond/Hagar
Fast, flexible, and version-tolerant serializer for .NET
|
|
dadhi/ImTools
Fast and memory-efficient immutable collections and helper data structures
|
Version | Downloads | Last updated |
---|---|---|
2.10.1 | 207 | 11/30/2022 |
2.10.0 | 9,714 | 7/12/2022 |
2.9.2 | 322 | 7/8/2022 |
2.9.1 | 275 | 6/28/2022 |
2.9.0 | 267 | 6/24/2022 |
2.8.1 | 3,272 | 4/23/2022 |
2.8.0 | 392 | 3/20/2022 |
2.7.1 | 256 | 3/13/2022 |
2.7.0 | 281 | 2/27/2022 |
2.6.0 | 284 | 2/26/2022 |
2.5.0 | 297 | 2/12/2022 |
2.4.2 | 14,903 | 1/22/2022 |
2.4.1 | 639 | 10/29/2021 |
2.4.0 | 359 | 10/16/2021 |
2.3.2 | 2,489 | 6/30/2021 |
2.3.1 | 1,121 | 5/28/2021 |
2.3.0 | 281 | 5/21/2021 |
2.2.4 | 242 | 5/4/2021 |
2.2.3 | 225 | 5/4/2021 |
2.2.2 | 239 | 5/3/2021 |
2.2.1 | 271 | 5/2/2021 |
2.2.0 | 244 | 4/30/2021 |
2.1.0 | 256 | 4/22/2021 |
2.0.0 | 285 | 4/2/2021 |
2.0.0-rc2 | 171 | 3/28/2021 |
2.0.0-rc1 | 151 | 3/18/2021 |
1.1.3 | 8,676 | 2/27/2021 |
1.1.2 | 635 | 12/17/2020 |
1.1.1 | 341 | 11/26/2020 |
1.1.0 | 577 | 11/20/2020 |
1.0.0 | 477 | 10/21/2020 |
0.9.8 | 461 | 10/1/2020 |
0.9.6 | 442 | 9/29/2020 |
0.9.5 | 444 | 9/25/2020 |
0.9.4 | 404 | 9/17/2020 |
0.9.3 | 382 | 9/14/2020 |
0.9.2 | 386 | 9/12/2020 |
0.9.1 | 307 | 8/24/2020 |
0.9.0 | 333 | 8/11/2020 |
0.8.2 | 346 | 7/17/2020 |
0.8.1 | 371 | 7/16/2020 |
0.8.0 | 330 | 7/16/2020 |
0.7.0 | 366 | 7/15/2020 |
0.6.1 | 383 | 7/14/2020 |
0.6.0 | 379 | 7/13/2020 |
0.5.0 | 470 | 7/11/2020 |
0.4.0 | 413 | 7/10/2020 |
0.3.0-preview | 289 | 7/9/2020 |
0.2.3-preview | 320 | 7/8/2020 |
0.2.2-preview | 227 | 7/7/2020 |
0.2.1-preview | 230 | 7/7/2020 |
0.2.0-preview | 251 | 7/6/2020 |
0.1.0-preview | 226 | 7/2/2020 |
Added Sample and Faster tuple to Action/Func overloads.
Added DebugClassify to classify generator output.
Added Dbg module to collect info, share data and functions and regression test code while debugging.
Bug fix add Check.Faster hints for all Faster functions.
Bug fix for Hash file same process multiple runs.