Info
Version: | 2.5.1 |
Author(s): | SageSerpent Ltd |
Last Update: | Friday, May 16, 2014 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/sageserpent-open/NTestCaseBuilder |
NuGet Url: | https://www.nuget.org/packages/NTestCaseBuilder |
Install
Install-Package NTestCaseBuilder
dotnet add package NTestCaseBuilder
paket add NTestCaseBuilder
NTestCaseBuilder Download (Unzip the "nupkg" after downloading)
Dependencies
- C5(2.2.5073.27396)
- FSPowerPack.Community(3.0.0.0)
- NUnit.Runners(2.6.3)
- FSharp.Core.3(0.0.2)
Tags
Think of it as being a DSL for making 'object mothers', whose generated data can be used as test cases (or for any other purpose, for that matter).
Each test case is built up progressively from smaller pieces of data that are combined together.
The smallest pieces are referred to as 'test variables'.
Each test variable is constrained to take values from its own set of allowed 'levels'.
Changing each test variable independently to a new level produces a new test case.
If a test requires a certain 'strength' of coverage of combinations of levels from different test variables, the library produces a stream of test cases that honour this guarantee while avoiding getting swamped with a combinatoric explosion of test cases.
If a parameterised test fails with an exception for a specific test case, the library creates a signature that allows it to reproduce the failing test case immediately in a separate test; this is to aid debugging.
The sources are written in F#, but the API can be used just as comfortably from C# as from F#.
The documentation is on the front page of the GitHub site: https://github.com/sageserpent-open/NTestCaseBuilder.
You can also find sample code ready to run by installing the NuGet samples package: https://www.nuget.org/packages/NTestCaseBuilder.Samples.