FluentAssertions 1.7.0
See the version list below for details.
dotnet add package FluentAssertions --version 1.7.0
NuGet\Install-Package FluentAssertions -Version 1.7.0
<PackageReference Include="FluentAssertions" Version="1.7.0" />
<PackageVersion Include="FluentAssertions" Version="1.7.0" />
<PackageReference Include="FluentAssertions" />
paket add FluentAssertions --version 1.7.0
#r "nuget: FluentAssertions, 1.7.0"
#addin nuget:?package=FluentAssertions&version=1.7.0
#tool nuget:?package=FluentAssertions&version=1.7.0
A very extensive set of extension methods for .NET 3.5, 4.0 and Silverlight 4.0 that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit test.
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. |
Silverlight | sl4 is compatible. sl5 was computed. |
This package has no dependencies.
GitHub repositories (799)
Showing the top 20 popular GitHub repositories that depend on FluentAssertions:
Repository | Stars |
---|---|
DevToys-app/DevToys
A Swiss Army knife for developers.
|
|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
|
|
Jackett/Jackett
API Support for your favorite torrent trackers
|
|
duplicati/duplicati
Store securely encrypted backups in the cloud!
|
|
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
|
|
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
|
|
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
|
|
coding-horror/basic-computer-games
An updated version of the classic "Basic Computer Games" book, with well-written examples in a variety of common MEMORY SAFE, SCRIPTING programming languages. See https://coding-horror.github.io/basic-computer-games/
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
restsharp/RestSharp
Simple REST and HTTP API Client for .NET
|
|
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
|
|
Cysharp/UniTask
Provides an efficient allocation free async/await integration for Unity.
|
|
unoplatform/uno
Open-source platform for building cross-platform native Mobile, Web, Desktop and Embedded apps quickly. Create rich, C#/XAML, single-codebase apps from any IDE. Hot Reload included! 90m+ NuGet Downloads!!
|
|
felixse/FluentTerminal
A Terminal Emulator based on UWP and web technologies.
|
|
bchavez/Bogus
:card_index: A simple fake data generator for C#, F#, and VB.NET. Based on and ported from the famed faker.js.
|
|
Tyrrrz/DiscordChatExporter
Exports Discord chat logs to a file
|
|
litedb-org/LiteDB
LiteDB - A .NET NoSQL Document Store in a single data file
|
|
Richasy/Bili.Uwp
适用于新系统UI的哔哩
|
|
reactiveui/ReactiveUI
An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application.
|
Version | Downloads | Last Updated |
---|---|---|
3.3.0 | 87,036 | 2/18/2015 |
3.2.2 | 57,369 | 12/12/2014 |
3.2.1 | 76,747 | 9/11/2014 |
3.1.229 | 35,769 | 7/29/2014 |
3.0.107 | 44,860 | 4/30/2014 |
2.2.0 | 49,859 | 12/30/2013 |
2.1.0 | 28,905 | 8/23/2013 |
2.0.1 | 25,459 | 3/3/2013 |
2.0.0.1 | 10,694 | 10/15/2012 |
1.7.1.1 | 5,865 | 3/24/2012 |
1.7.0 | 482 | 1/13/2012 |
1.6.0 | 629 | 10/31/2011 |
1.5.0 | 556 | 6/29/2011 |
1.4.0 | 274 | 3/14/2011 |
1.3.0.1 | 195 | 1/15/2011 |
- Added methods for asserting that a collection of types matching a predicate have specific methods that are virtual or marked with a specific attribute.
- Added methods for asserting XElements and Xattributes
- Added support for recursively comparing the properties of nested (collection of objects ). By default it will compare all properties of the expected object graph, unless SharedProperties is used.
- Added a fallback mechanism so that if FA cannot find any of the supported frameworks, it will fall back to using a custom AssertFailedException exception class rather than crashing.
- Added support for ComparisonMode.StartWith and ComparisonMode.StartWithEquivalent when asserting the message of an exception.
- For assertions that verify against a Type, the failure message will use the AssemblyQualifiedName rather than just the name of the type.
- Fixed a bug so that collection.Should().OnlyContain(lamba) now throws if the collection is empty. See this discussion for more details.
- Minor fix that ignores trailing blank characters when looking for the 'because' text in the reason of an assertion.
- Added better and deeper detection of cyclic references when recursively comparing properties or generating a string representation of a complex object graph.
- For long strings, the error message for string.Should().StartWith() places the actual and expected strings on seperate lines. This makes it easier to find the differences.