NFluent 1.1.0
See the version list below for details.
dotnet add package NFluent --version 1.1.0
NuGet\Install-Package NFluent -Version 1.1.0
<PackageReference Include="NFluent" Version="1.1.0" />
paket add NFluent --version 1.1.0
#r "nuget: NFluent, 1.1.0"
// Install NFluent as a Cake Addin
#addin nuget:?package=NFluent&version=1.1.0
// Install NFluent as a Cake Tool
#tool nuget:?package=NFluent&version=1.1.0
NFluent is an ergonomic check library which aims to fluent your .NET TDD experience (based on simple Check.That() check statements). NFluent aims your tests to be fluent to write (with an happy 'dot' auto completion experience), fluent to read (i.e. as close as possible to plain English expression), but also fluent to troubleshoot, in a less-error-prone way comparing to the classical .NET test frameworks. NFluent is directly, but also freely, inspired by the awesome Java FEST fluent check/reflection library (http://fest.easytesting.org/).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net35 is compatible. net40 is compatible. net403 was computed. net45 was computed. 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. |
This package has no dependencies.
NuGet packages (10)
Showing the top 5 NuGet packages that depend on NFluent:
Package | Downloads |
---|---|
TestableHttpClient.NFluent
NFluent checks for checking HttpResponseMessages. |
|
iago.lib
Iago is a tool to write bdd like tests in kre. use `iago.runner` to execute your tests |
|
Suzianna.Core
A library for writing flexible and easy to maintain acceptance tests |
|
MultiDimensionDictionary
multi dimension dictionary with expiration mechanism for cache invalidation |
|
iago.runner
Iago runner is a tool to run bdd like tests in kre |
GitHub repositories (15)
Showing the top 5 popular GitHub repositories that depend on NFluent:
Repository | Stars |
---|---|
ReClassNET/ReClass.NET
More than a ReClass port to the .NET platform.
|
|
WireMock-Net/WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on the functionality from http://WireMock.org, but extended with more functionality.
|
|
MarcosMeli/FileHelpers
The FileHelpers are a free and easy to use .NET library to read/write data from fixed length or delimited records in files, strings or streams
|
|
WOA-Project/WoA-Installer-Rpi
This repository was deprecated, use:
|
|
Doraku/DefaultEcs
Entity Component System framework aiming for syntax and usage simplicity with maximum performance for game development.
|
Version | Downloads | Last updated |
---|---|---|
3.0.2.327-beta | 260 | 10/13/2023 |
3.0.1.352 | 37,552 | 6/9/2023 |
3.0.0.351 | 14,686 | 5/6/2023 |
3.0.0.277-beta | 9,037 | 3/3/2022 |
3.0.0.270-beta | 362 | 2/27/2022 |
3.0.0.269-beta | 380 | 2/27/2022 |
3.0.0.268-beta | 370 | 2/24/2022 |
2.8.0 | 404,116 | 2/4/2022 |
2.7.2 | 245,362 | 4/8/2021 |
2.7.1 | 89,544 | 12/29/2020 |
2.7.0 | 292,484 | 2/11/2020 |
2.6.0 | 198,234 | 8/19/2019 |
2.5.0 | 159,478 | 3/12/2019 |
2.4.0 | 112,939 | 10/2/2018 |
2.3.1 | 88,090 | 6/12/2018 |
2.3.0 | 1,935 | 6/9/2018 |
2.2.0 | 83,761 | 2/10/2018 |
2.1.1 | 27,407 | 1/5/2018 |
2.1.0 | 11,810 | 12/10/2017 |
2.0.0 | 63,199 | 6/27/2017 |
2.0.0-alpha-44 | 2,078 | 5/10/2017 |
1.3.1 | 222,530 | 7/28/2014 |
1.2.0 | 8,889 | 6/16/2014 |
1.1.0 | 4,883 | 2/14/2014 |
1.0.0 | 3,587 | 12/31/2013 |
0.11.0 | 2,008 | 11/26/2013 |
0.9.0 | 2,072 | 8/6/2013 |
0.8.0 | 1,924 | 7/6/2013 |
0.7.0 | 1,744 | 6/4/2013 |
0.6.0 | 1,694 | 5/19/2013 |
0.5.0 | 1,752 | 4/21/2013 |
New feature(s):
* Now supports IsNull() and IsNotNull() checks for nullables (thanks to Mendel Monteiro Beckerman for that).
* Check.ThatCode(...): New entry point for checks on code (Action and Func<T>). It supersedes the equivalent Check.That signature.
--------------
Change(s):
* Improves error messages for string comparisons (e.g. visually indicates the presence of tab char with <<tab>>, or distinguish <<CFLF>> and <<LF>>, properly handles long strings, ...)
* Check.That(Func<T>) and Check.That(Action) are now obsolete.
* The HasFieldsEqualToThose() check is now obsolete and should be replaced by HasFieldsWithSameValues() which now support anonymous classes as expected parameter.
* The HasFieldsNotEqualToThose() check is now obsolete and should be replaced by HasNotFieldsWithSameValues()
* Simplification of extensibility
* We are so proud of this 1.1 version of NFuent; we decided to sign it.
--------------
Bug Fixe(s):
*