FluentAssertions2Shouldly 1.0.0-beta.4

This is a prerelease version of FluentAssertions2Shouldly.
dotnet add package FluentAssertions2Shouldly --version 1.0.0-beta.4
                    
NuGet\Install-Package FluentAssertions2Shouldly -Version 1.0.0-beta.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FluentAssertions2Shouldly" Version="1.0.0-beta.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluentAssertions2Shouldly" Version="1.0.0-beta.4" />
                    
Directory.Packages.props
<PackageReference Include="FluentAssertions2Shouldly" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FluentAssertions2Shouldly --version 1.0.0-beta.4
                    
#r "nuget: FluentAssertions2Shouldly, 1.0.0-beta.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=FluentAssertions2Shouldly&version=1.0.0-beta.4&prerelease
                    
Install FluentAssertions2Shouldly as a Cake Addin
#tool nuget:?package=FluentAssertions2Shouldly&version=1.0.0-beta.4&prerelease
                    
Install FluentAssertions2Shouldly as a Cake Tool

FluentAssertions2Shouldly

This library was developed using Cursor, an AI-powered code editor.

All code, all tests and all documentation was written by the AI, no code was written by me.

The AI is not perfect, it is like a very newbie developer. It needed a lot of coaching, and it didn't remember what it was told. On the bright side, it never complained, but just tried to do what it was told, and I could do other stuff while it was wading through its own errors, trying to fix them.

A library that provides a FluentAssertions-style syntax while using Shouldly under the hood. This is perfect for:

  • Projects migrating from FluentAssertions to Shouldly
  • Teams who prefer FluentAssertions' syntax but want to use Shouldly's features
  • Maintaining consistent test style across mixed codebases

Requirements

  • .NET 6 or higher (required for global using statements and file-scoped namespaces)

Installation

dotnet add package FluentAssertions2Shouldly

Usage

The library provides a familiar FluentAssertions-style syntax:

// String assertions
string text = "Hello";
text.Should().Be("Hello");
text.Should().StartWith("He");
text.Should().Contain("ell");

// Numeric assertions
int number = 42;
number.Should().Be(42);
number.Should().BeGreaterThan(40);
number.Should().BeInRange(40, 45);

// Collection assertions
var list = new[] { 1, 2, 3 };
list.Should().HaveCount(3);
list.Should().Contain(2);
list.Should().BeInAscendingOrder();

// Exception assertions
Action action = () => throw new Exception();
action.Should().Throw<Exception>();

While using Shouldly under the hood:

// What you write
text.Should().Be("Hello");

// What actually runs
text.ShouldBe("Hello");

Features

Core Assertions

  • String assertions
  • Numeric assertions
  • Boolean assertions
  • Collection assertions
  • Exception assertions
  • DateTime assertions
  • Dictionary assertions

Specialized Assertions

  • File assertions
  • Async/Task assertions
  • Approximate equality assertions
  • Enum assertions
  • Property change assertions
  • Custom assertions

Documentation

Migration

The library makes it easy to migrate from FluentAssertions to Shouldly gradually:

  1. Replace FluentAssertions package with FluentAssertions2Shouldly
  2. Tests continue to work with the same syntax
  3. Optionally migrate to native Shouldly syntax over time

Example:

// Original FluentAssertions code
using FluentAssertions;
value.Should().Be(expected);

// Step 1: Switch to FluentAssertions2Shouldly
using FluentAssertions2Shouldly;
value.Should().Be(expected);

// Step 2 (Optional): Native Shouldly
using Shouldly;
value.ShouldBe(expected);

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-beta.4 48 2/27/2025
1.0.0-beta.3 49 2/26/2025
1.0.0-beta.2 47 2/26/2025
1.0.0-beta.1 51 2/26/2025